All docs
V21.1
24.1
23.2
23.1
22.2
22.1
21.2
21.1
20.2
The page you are viewing does not exist in version 20.2.
20.1
The page you are viewing does not exist in version 20.1.
19.2
The page you are viewing does not exist in version 19.2.
19.1
The page you are viewing does not exist in version 19.1.
18.2
The page you are viewing does not exist in version 18.2.
18.1
The page you are viewing does not exist in version 18.1.
17.2
The page you are viewing does not exist in version 17.2.
A newer version of this page is available. Switch to the current version.

jQuery FileManager - notifications

Configures notification settings.

Type:

Object

showPanel

Specifies whether to show the progress panel.

Type:

Boolean

Default Value: true

The File Manager's Refresh button (DevExtreme File Manager - Show Progress Panel) displays additional marks (progress, check or exclamation mark) when the progress panel contains notifications and progress information. Click this button to show the progress panel.

DevExtreme File Manager - Show/Hide Progress Panel

The Refresh button does not display notification marks if the showPanel option is set to false.

jQuery
JavaScript
$(function () {
    $("#file-manager").dxFileManager({
        notifications: {
            showPanel: false
        }
        //...            
    });
});  
Angular
HTML
TypeScript
 
<dx-file-manager id="fileManager">
    <dxo-notifications 
        [showPanel]="false">
    </dxo-notifications>
    <!-- ... -->
</dx-file-manager>
import { DxFileManagerModule } from "devextreme-angular";
// ...
export class AppComponent {
    // ...
}
@NgModule({
    imports: [
        // ...
        DxFileManagerModule
    ],
    // ...
})
Vue
App.vue
<template>
    <DxFileManager>   
        <DxNotifications 
            :show-panel="false"
        />
    </DxFileManager>
</template>

<script>
import 'devextreme/dist/css/dx.light.css';

import { DxFileManager, DxNotifications } from 'devextreme-vue/file-manager';

export default {
    components: {
        DxFileManager,
        DxNotifications
    },
    data() {
        return {
            // ...
        }
    }
}
</script>
React
App.js
import React from 'react';
import FileManager, { Notifications } from 'devextreme-react/file-manager';

const App = () => {
    return (
        <FileManager>
            <Notifications 
                showPanel={false} 
            />
        </FileManager>
    );
};

export default App;
ASP.NET MVC Controls
Razor C#
@(Html.DevExtreme().FileManager()
    .Notifications(nt => nt
        .ShowPanel(false)
    )
    // ...
)
ASP.NET Core Controls
Razor C#
@(Html.DevExtreme().FileManager()
    .Notifications(nt => nt
        .ShowPanel(false)
    )
    // ...
)

showPopup

Specifies whether to show the pop-up notification window.

Type:

Boolean

Default Value: true

DevExtreme File Manager - Show and Hide Popup Notification Panel

jQuery
JavaScript
$(function () {
    $("#file-manager").dxFileManager({
        notifications: {
            showPopup: false
        }
        //...            
    });
});  
Angular
HTML
TypeScript
 
<dx-file-manager id="fileManager">
    <dxo-notifications [showPopup]="false">
    </dxo-notifications>
    <!-- ... -->
</dx-file-manager>
import { DxFileManagerModule } from "devextreme-angular";
// ...
export class AppComponent {
    // ...
}
@NgModule({
    imports: [
        // ...
        DxFileManagerModule
    ],
    // ...
})
Vue
App.vue
<template>
    <DxFileManager>   
        <DxNotifications 
            :show-popup="false"
        />
    </DxFileManager>
</template>

<script>
import 'devextreme/dist/css/dx.light.css';

import { DxFileManager, DxNotifications } from 'devextreme-vue/file-manager';

export default {
    components: {
        DxFileManager,
        DxNotifications
    },
    data() {
        return {
            // ...
        }
    }
}
</script>
React
App.js
import React from 'react';
import FileManager, { Notifications } from 'devextreme-react/file-manager';

const App = () => {
    return (
        <FileManager>
            <Notifications showPopup={false} />
        </FileManager>
    );
};

export default App;
ASP.NET MVC Controls
Razor C#
@(Html.DevExtreme().FileManager()
    .Notifications(nt => nt
        .ShowPopup(false)
    )
    // ...
)
ASP.NET Core Controls
Razor C#
@(Html.DevExtreme().FileManager()
    .Notifications(nt => nt
        .ShowPopup(false)
    )
    // ...
)