Angular FileManager - notifications

Configures notification settings.

Selector: dxo-notifications
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.

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
  • ],
  • // ...
  • })

showPopup

Specifies whether to show the pop-up notification window.

Type:

Boolean

Default Value: true

DevExtreme File Manager - Show and Hide Popup Notification Panel

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
  • ],
  • // ...
  • })