There is no HIDE / SHOW property in the Kendo grid. You need to do this in jQuery.
Runtime, the kendo grid is converted to a tag DIV.
you need to hide / show the div tag in jquery.
(Div id will be the name of the grid)
Hide the grid on the Download page
$(document).ready(function() {
$( "#Grid" ).hide();
});
Show grid at the touch of a button
$('#button').click(function(){
$('#Grid').show();
});
source
share