SMART datagrid v.1 > Classes > GridBase
If the data cell specified by parameter column is beyond the range of grid screen, it will horizontally scroll so as to display the cell.
$('#columnVisible').click(function () {
var column = grid.getVisibleColumn(grid.visibleColumnCount() - 1);
grid.makeColumnVisible(column);
});