2014-07-07 204 views
0

在我的頁面中,我不希望顯示任何刪除確認消息。 我試過 deleteConfirmation:falsejtable deleteConfirmation:虛假錯誤

但我仍然收到確認提醒框。 請提出一些解決方法來實現這一點。 提前感謝您。

這裏是代碼示例:

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' 
      } 

回答