I've got a grid:
and I've tried all of these things to change the scrollable property:
Nothing works. How does one change whether a grid is scrollable on the fly?
$('#myGrid').kendoGrid({ ... scrollable: false, ...});$('#myGrid').data("kendoGrid").options.scrollable = true;$('#myGrid').data("kendoGrid").refresh();$('#myGrid').data("kendoGrid").scrollable = true;$('#myGrid').data("kendoGrid").refresh();var MyGrid = $('#myGrid').data("kendoGrid");MyGrid.options.scrollable = true;MyGrid.refresh();var MyGrid = $('#myGrid').data("kendoGrid");MyGrid.scrollable = true;MyGrid.refresh();