我有一个包含以下各列的剑道网格。
1.Name
2。年龄
3.Type {values:public,private}
我需要在特定行中隐藏一列。在我的问题中,如果“类型”值是私有的,我想隐藏年龄单元格。
答案 0 :(得分:1)
使用if else格式
columns.Template(@<text></text>)
.ClientTemplate("#if (field == value) {#"
+ "<a></a>"
+ "#}else {#"
+"<input name='chkSubscribed' class='subscribedClass'type='type': '' #/>"
+ "#} #").Width(130).Title("title");
答案 1 :(得分:0)
您无法隐藏单元格,但可以根据其他列来隐藏年龄。有关如何将条件逻辑应用于列的信息,请参见https://docs.telerik.com/aspnet-mvc/helpers/grid/faq#how-to-apply-conditional-logic-to-client-column-templates?