EOS刪除選中行
阿新 • • 發佈:2018-12-13
function doRemove(){
nui.confirm("是否刪除選中資料?", "警告⚠️", function(e){
if("ok"==e){
var rows=grid.getSelecteds();
if(rows.length!=0){
$.ajax({
url:"com.pttl.bps.pact.sell.sellContract.removeContract.biz.ext",
type:'POST',
data:nui.encode({cons:rows}),
cache: false,
contentType:'text/json',
success:function(text){
var returnJson = nui.decode(text);
if(returnJson.exception == null){
nui.alert("刪除成功", "提示");
nui.get("doRemove").disable();
grid.reload();
}
}
});
}else{
nui.alert("請選擇資料", "提示");
}
}
});
}
nui.confirm("是否刪除選中資料?", "警告⚠️", function(e){
if("ok"==e){
var rows=grid.getSelecteds();
if(rows.length!=0){
$.ajax({
type:'POST',
data:nui.encode({cons:rows}),
cache: false,
success:function(text){
var returnJson = nui.decode(text);
if(returnJson.exception == null){
nui.get("doRemove").disable();
grid.reload();
}
}
});
}else{
nui.alert("請選擇資料", "提示");
}
}
});
}