or
columns.Bound(s => s.SurveyYear).Filterable(f => f.UI("yearFilterFormatSurvey")).Width(85);<script id="yearFilterFormatSurvey" type="text/javascript"> function yearFilterFormatSurvey(element) { element.kendoNumericTextBox({ format: 'n0', decimals: 0, }); }</script>$('#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();