//This is for nested if else condition in kendo ui grid row template. //if else in Kendo ui grid template as given below. template: '#if(ErrorCode == null && ErrorCode == ""){# NoError #}else If(ErrorType == 1){# #: DeviceError # #}else{# #: OrderError # #}#' //if else in Kendo ui grid template example in detail as given below $(yourGridId).kendoGrid({ dataSource: { data: datasource }, columns: [ { field: "ErrorCode", title: "Error Code" }, { field: "ErrorType", title: "Error Type" }, { field: "ErrorDesc", title: "Error Detail", template: '#if(ErrorCode == null && ErrorCode == ""){# NoError #}else If(ErrorType == 1){# #: DeviceError # #}else{# #: OrderError # #}#' } ], scrollable: true, sortable: true, resizable: true });
For more detail,
http://www.code-sample.com/2014/10/kendo-ui-grid-template-if-else.html