Skip to main content

Posts

Showing posts with the label kendo grid row template conditional

kendo ui grid template nested if else

In the below kendo grid, I have added the if else on column template. //Syntax template: "#if(ErrorDesc==null){# #: DeviceLabel # #}else If(ErrorDesc==" "){# #: DeviceLabel # #}else{# #: DeviceText # #}#" //Kendo ui grid $ ( "#gridViewHideIfElse" ).kendoGrid({ pageable: true , scrollable: true , resizable: true , sortable: true , columnMenu: true , dataBound : function (e) { }, columns: [ { field: "Usage Limit" , title: "Services" , template: "# if(UsageIncludedID >= 0){ #" + "#= UsageIncludedValue #" + "# } else { # UnlimitedValue # } #" , width: 310 }, ], dataSource: { type: "json" , transport: { read: "http://localhost:37745/Contract/Api/Pricing/GetByCTID/" + session().PricingID }, pageSize: 10 ...