Hello!
I would like to change the scrollbar width in File Explorer control Angular JS1
Is it possible somehow? Through css or code?
- I tried by CSS but it look the control will reset it automatically the style due responsive checks
- I tried by code also with no success:
Can you help me with that ?
These attemps below did not work for me.
|
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() {
};
}
|