Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
The filter row is assigned a class of .k-filter-row, so you could just use script to select the row and hide/show it:
$("#gridid .k-filter-row").hide(); / $("#gridid .k-filter-row").show();
If you want to actually turn filtering on and off using grid options:
var grid = $("#gridid").data("kendoGrid");
grid.setOptions({ filterable: false });
grid.setOptions({ filterable: { mode: "row" } });
DEMO