This question is locked. New answers and comments are not allowed.
Please help me to disable Grid filter with jquery.
My code:
$(document).ready(
function () {
var isReadOnly = '@Model.IsReadOnly';
if (isReadOnly = true) {$(".t-grid-filter").click(function (e) {
alert('hi');
return false;
});}
});