Kendo ui grid if else condition

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
    });

For more detail,
http://www.code-sample.com/2014/10/kendo-ui-grid-template-if-else.html
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^