SMART datagrid v.1 > Classes > ScrollBar
Specify the display location of scroll bar buttons by ScrollButtonLocation constant.
Defaults to ScrollButtonLocations.NORMAL.
// Display both buttons in the start location of scroll bar.
grid.vscrollBar().setButtonLocation(DataLudi.ScrollButtonLocation.NEAR);
// or,
grid.setOptions({
vscrollBar: {
buttonLocation: 'near'
},
hscrollBar: {
buttonLocation: 'far'
}
});