start: に見えない列があるブートストラップテーブルがありますdata-visible="false"
。列のキャプションには、モーダル ヘルプ ダイアログを表示するためのボタンが含まれています。
<script>
// This is repeated for each column that have help button,
// some are visible at the start and some not.
$("#helpButton").click(function(event) {
event.stopPropagation(); // Prevent ordering by the field
// when the button is pressed.
console.log("Hey"); // Do something
$('#modalDialog').modal('show');
});
</script>
問題は、ユーザーがこの機能を表示する列を変更すると、失われることです。(console.log
デバッグ用で、関数が呼び出されないことを確認しています)。
前もって感謝します。