-1

在我的 boostrap 表的一列的标题中,有一个显示模式帮助的按钮。问题是该列是可排序的:然后,当我单击按钮时,排序和帮助显示都会发生。如何禁用按钮中的排序操作而不是列文本中的排序操作?

提前致谢!!

4

2 回答 2

0

此解决方案的问题在于,最初未显示的列(data-visible="false"在网页代码中)在显示时没有此行为。

此外,帮助按钮显示在列选择器中,这是不可取的。

于 2015-08-25T14:17:26.377 回答
0

我找到了我的问题的答案:

$( "#helpButton_id" ).click(function( event ) {
      // stopPropagation prevents the further sorting to happen
      event.stopPropagation();
      // show the modal programatically
      $('#Modal_id').modal('show');
    });

问候

于 2015-08-24T18:27:23.503 回答