jtable deleteConfirmation:false error

时间:2014-07-07 14:50:40

标签: jquery jtable

在我的页面中,我不希望显示任何删除确认消息。 我试过了  deleteConfirmation:false

但我仍然收到确认提醒框。 请提出一些解决方法来实现这一目标。 提前感谢你。

这是代码示例:

title : 'WorkArea List',
paging : true, //Enable paging
pageSize : 10, //Set page size (default: 10)
sorting : false, //Enable sorting
jqueryuiTheme : true,
openChildAsAccordion : true,
deleteConfirmation : false,
actions : {
                listAction : '<%=request.getContextPath()%>/globallink/ajax/grid?type=repoLoad',
                deleteAction : '<%=request.getContextPath()%>/globallink/ajax/g rid?type=repoDelete',
                updateAction : '<%=request.getContextPath()%>/globallink/ajax/grid?type=repoUpdate'
            }

1 个答案:

答案 0 :(得分:0)

请使用以下代码

,而不是将deleteConfirmation设置为false
deleteConfirmation: function (data) {
      data.deleteConfirm = false;
}

请注意data.deleteConfirm是一个布尔值,表示是否显示删除确认消息(默认值为true)。

FYR - http://jtable.org/ApiReference/GeneralOptions#genopt-deleteConfirmation