我目前有一个wijmo网格,其中绑定完成后会出现带复选框的列列表。我想在弹出窗口中添加复选框,以便仅在单击时可见。以下代码是我必须隐藏和取消隐藏已检查和未检查条件的列。
self.hideCols = function () {
var columns = $('#Grid').wijgrid("option", "columns"),
listContainer = $("#columnsList"),
checkBox, isChecked;
$.each(columns, function (index, col) {
isChecked = (col.visible)
? "checked = 'checked'"
: "";
checkBox = $("<label><input type='checkbox' " + isChecked + " />" + col.headerText + "</label>");
listContainer.append(checkBox);
checkBox.click(function (e) {
columns[index].visible = $(this).children("input")[0].checked;
$('#Grid').wijgrid("doRefresh");
})
答案 0 :(得分:1)
我明白了。只需使用HTML创建弹出窗口并在
<div id="dialog" data-bind="wijdialog: {disabled: disabled, autoOpen: autoOpen, draggable: draggable, modal: modal, resizable: resizable }"
title="Uncheck to Hide Columns">
<table id="columnsList"></table>
</div>