handsontable how is it possible to change the scrollbar next to the table -


i need change how scrollbar displayed in handsontable. knows how this?

function walkontablescroll(instance) { this.instance = instance; this.wtscrollbarv = new walkontablescrollbar(instance, 'vertical'); `enter code here`this.wtscrollbarh = new walkontablescrollbar(instance, 'horizontal'); } 

if want scrollbars, set container width, height , overflow: scroll in css.

$example1.handsontable({   data: createbigdata(),   colwidths: [55, 80, 80, 80, 80, 80, 80], //can number or function   rowheaders: true,   colheaders: true,   minsparerows: 1,   stretchh: 'all',   contextmenu: true,   width: 100,   height: 100 }); 

see here more detail


Comments

Popular posts from this blog

How to mention the localhost in android -

php - Calling a template part from a post -

c# - String.format() DateTime With Arabic culture -