Skip to main content

Posts

Showing posts with the label This is for nested if else condition in kendo ui grid row template.

Kendo ui grid if else condition

//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 ...