Hi I've a kendo grid like below and I wanted to check null value for column and based on condition I want to display some default number to the column
Here is my sample code.
$("#eCount").kendoGrid({
dataSource: {
data: myModel,
pageSize: 5
},
columns: [
{
field: "Count",
title: "Count",
template: '# if (Count == "null" ) {#1#} else {#Count#}#'
}]
});
But I'm not getting how to get it done. Any solution?