按值有条件地隐藏元素

Hide an element conditionally by its value

我有一个包含以下列的 kendo 网格。

1.Name

2.Age

3.Type{值:public,私有}

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

您无法隐藏单元格,但可以根据其他列隐藏年龄。请参阅 https://docs.telerik.com/aspnet-mvc/helpers/grid/faq#how-to-apply-conditional-logic-to-client-column-templates 了解如何将条件逻辑应用于列?

使用 if else 格式

 columns.Template(@<text></text>)
                        .ClientTemplate("#if (field == value) {#"
                        + "<a></a>"
                        + "#}else {#"
                        +"<input name='chkSubscribed' class='subscribedClass'type='type': '' #/>"
                        + "#} #").Width(130).Title("title");