c1gridview 客户端控制列隐藏问题
webform 中的c1gridview使用wijimo 3 文档中的操作类方法无效$("#C1GridView1").c1gridview("columns").option("Visible", "False");
或者有什么其他办法前台操作列隐藏吗?
您好,可以参照 // create checkboxes to toggle column visibility
var columns = grid.wijgrid("option", "columns");
var listContainer = $("#checkboxes");
$.each(columns, function (index, col) {
var isChecked = col.visible ? "checked = 'checked'" : "";
var checkBox = $("<label><input type='checkbox' " + isChecked + " />" + col.headerText + "</label>");
listContainer.append(checkBox);
checkBox.click(function (e) {
columns.visible = $(this).children("input").checked;
grid.wijgrid("doRefresh");
})
})
}); 感谢,明白了 不客气的。
页:
[1]