根据其值有条件地隐藏元素

时间:2019-05-02 09:38:54

标签: kendo-ui kendo-grid kendo-asp.net-mvc kendo-ui-grid kendo-ui-mvc

我有一个包含以下各列的剑道网格。

1.Name

2。年龄

3.Type {values:public,private}

我需要在特定行中隐藏一列。在我的问题中,如果“类型”值是私有的,我想隐藏年龄单元格。

2 个答案:

答案 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