Hi,
I have a diagram that opens a dialog containing a filemanager, but there is an issue when I try to set the minWidth of the navigation Pane.
It doenst seem to set the
registered
(bigger than default) value to the component. It only works after dragging the slider a little bit, which only THEN correctly sets the defined minWidth value. You can see this happen in the .zip containing the .gif
"@syncfusion/ej2-angular-filemanager": "19.2.56",
What i tried(simplified):
-Setting the property in the component directly as it is generated, but doesnt work.
public navigationPaneSettings: NavigationPaneSettingsModel = { minWidth: 400, visible: true };
[navigationPaneSettings]='navigationPaneSettings'
>
-Refreshing after the component is created, hopefully thinking this would set the adjusted value correctly like in a grid, but no.
@ViewChild("fileObj") public fileManager: FileManagerComponent;
created(){
this.filemanager.refresh();
}
Any idea what is happening?
Attachment: navigationpane_6ba4419.zip