我有一个引导表,它在开始时有一个不可见的列:data-visible="false"。列标题包含一个用于显示模式帮助对话框的按钮:
<script>
// This is repeated for each column that have help button,
// some are visible at the start and some not.
$("#helpButtonColumnX").click(function(event) {
event.stopPropagation(); // Prevent ordering by the field
// when the button is pressed.
console.log("Hey"); // Do something
$('#modalDialogColumnX').modal('show');
});
</script>
问题是,当用户更改希望查看哪些列时,此功能会丢失。(console.log是调试用的,确认没有调用该函数)。每列都有自己的按钮和模式,我以 X 为例。提前致谢。
编辑:这里是codeply