Hi Ivan,
Thanks for contacting Syncfusion support.
We have validated your requirement in EJ FileExplorer component. Based on the provided details, we suspect that your requirement is to change the vertical scrollbar of the FileExplorer. We can achieve your requirement by dynamically updating the scroller size through its instance. Please refer to the below code block.
export class AppComponent {
@ViewChild('file') fileObj: EJComponents<any, any>;
ngAfterViewInit(){
// for grid view
if(this.fileObj.widget._gridObj){
this.fileObj.widget._gridObj._scrollObject.setModel({ scrollerSize: 16 });
}
// for tile view
if(this.fileObj.widget._tileScroll) {
this.fileObj.widget._tileScroll.setModel({ scrollerSize: 16 });
}
}
constructor() {
};
}
|
If we misunderstood your requirement, please share us some additional details. It will be help us to provide you the prompt solution.
1. Share us the exact requirement with File Explorer control.
2. Share the screenshot of the requirement.
3. Share us the screen recorded video of your requirement.
Please let us know, if you need any further assistance.
Regards,
Muthukrishnan K