我的代码有什么问题?

我必须在kendo UI网格中检查列中是否有“OrderType 20”。
如果是这样,我需要应用包含背景的css条件,但是它不起作用,有人可以帮我吗?谢谢

template: '# if (OrderType == "OrderType 20") {#<div class='customClass'>#:OrderType#</div>#} else {#OrderType#}#'

最佳答案

对于kendo ui网格行模板,它可能对嵌套有所帮助。 IE。

template: "#if(ErrorDesc==null){# #: DeviceLabel # #}else If(ErrorDesc==""){# #: DeviceLabel # #}else{# #: DeviceText # #}#"

10-07 17:36