如何在DataGrid中選擇一筆資料, 然後呼叫後端的處理程序?
在DataGrid中加一個Button, 然後寫一個JS的方法來調用後端的程序, 如下:
function createPo() {
   var sIndex = $("#dgMaster").datagrid("getSelectedIndex");
   if (sIndex >= 0) {
       var pno = $("#dgMaster").datagrid("getRows")[sIndex].訂單號碼; //取出訂單號碼
       $.callMethod('客戶訂單','doCreatePo',{type:1,no:pno},function(result){
           $.alert(result,'info');
        });
     }
    else {
      $.alert('請選擇一筆訂單','info');
    }
}