我正在使用jConfirm
对话框进行确认jqgrid
。我想要的是当gridComplete
触发器应该弹出一个jConfirm
对话框时,它应该弹出一个带有确定的对话框,当我点击确定时它应该setSeletion
在行中取消按钮jqgrid
。我的代码如下:
// My ajax call in gridComplete function in jqgrid
function listSelectedUsers(data) {
$.ajax({
cache: false,
async: true,
type: "POST",
url: urlPath,
data: { countryID: countryID},
dataType: "json",
success: function(data){
jConfirm(data, 'JqGrid Popup', function(confirmation) {
if (confirmation) {
}
});
},
error: function(data) {
}
});
}
//jqgrid code
// on gridComplete function call, does not show up jConfirm dialog popup.
gridComplete: function() {
listSelectedUsers(data);
},
请尽快给我建议解决方案。提前致谢。