今天簡短分享Grid 表單。
表單開啟時,要將資料載入到Grid中
var tGridData = GridData.value; //取出儲存在隱藏欄位中的Grid資料
if(typeof(GridDataObj) != "undefined")
{ //判斷grid物件是否存在表單中
if(tGridData.length >1 ){ //判斷Grid是否有資料
GridDataObj.reload(eval(tGridData)); //若Grid有資料則將存於隱藏中的值載入Grid中
}
}
表單儲存時,要將資料存入隱藏值。
if(typeof(GridDataObj) != "undefined"){ //判斷grid物件是否存在表單中
GridData.value = GridDataObj.toArrayString(); //將Grid裡的資料儲存至隱藏欄位中
}