我在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);
},
。我的代码如下:
{{1}}
请尽快向我推荐解决方案。 提前谢谢。