開始時に非表示の列があるブートストラップ テーブルがあります: 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 を付けます。前もって感謝します。
編集:ここでコードプライ