1. 程式人生 > >EOS刪除選中行

EOS刪除選中行

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("請選擇資料", "提示");
       }
            }
        });
    }