经过一段时间的研究,尝试在剑道网格表中隐藏一个指定列
使用这个
$('#grid .k-grid-content table tr td:nth-child(8),th:nth-child(8)').toggle();
在没有帮助的情况下,有人有想法吗?
我要隐藏的列绑定到
{
field: "CreatedDate",
width: 20,
title: "Create Date",
type: 'date',
template: '#= kendo.toString(CreatedDate,"MM/dd/yyyy") #'
}
[编辑]
$('#grid div.k-grid-header-wrap th:nth-child(4)').toggle()
$('#grid div.k-grid-content td:nth-child(4)').toggle()
只能隐藏标题..但不能隐藏整个列,仍然需要帮助!