私のコードの何が問題になっていますか?
私の剣道UIグリッドをチェックする必要があります私の列に「OrderType 20」があります。もしそうなら、私は背景を含む私のCSS条件を適用する必要がありますが、それはうまくいきません、誰かが私を助けてもらえますか?ありがとう
template: '# if (OrderType == "OrderType 20") {#<div class='customClass'>#:OrderType#</div>#} else {#OrderType#}#'
剣道uiグリッド行テンプレートの場合は、ネストされている場合に役立ちます。つまり.
template: "#if(ErrorDesc==null){# #: DeviceLabel # #}else If(ErrorDesc==""){# #: DeviceLabel # #}else{# #: DeviceText # #}#"
より簡単な方法で完了:ありがとう
template: "#if(OrderType == 'OrderType 20') {#<div class='customClass'>#:OrderType#</div>#} else{##:OrderType##}#"
関数を作成してテンプレートで呼び出し、ロジックをコーディングすることをお勧めします。以下はその例です。
$(gridId).kendoGrid({
dataSource: {
data: datasource
},
scrollable: true,
sortable: true,
resizable: true,
columns: [
{ field: "MetricName", title: "Metric", width: "130px" },
{ field: "OnTrack", title: "On Track", template:'#:changeTemplate(OnTrack)#', width: "130px", attributes: { style: "text-align: center !important;" } },
{ field: "CurrentAmount", title: "Current", template: '$ #:parseFloat(CurrentAmount).toFixed(2)#', width: "130px" },
{ field: "RequiredAmount", title: "Required", template: '$ #:parseFloat(RequiredAmount).toFixed(2)#', width: "130px" }
]
});
function changeTemplate(value)
{
Conditions depending on Your Business Logic
if ()
return "HTML Here";
else
return "HTML Here";
}
グリッドデータバインドイベントでも処理できます。次のフィドルを確認してください。
http://jsfiddle.net/Sowjanya51/krszen9a/
すべてのセルコレクションをループする代わりに、データバインドを変更できます
if(dataItem.OrderType == 'OrderType20')
{
field: "status",
title: "Status",
width: "80px",
template: "# if (status == '1' ) { # <center><span
style='color:green;'>Active</span></center> #
}
else if (status == '0'){ #
<center><span style='color:red;'>Deactive</span></center>
#} #"
}