本篇紀錄從頁籤欄位如何取得表單資料
1.打開關聯類型,"On New Related Option"可以調整頁籤執行動作,"Grid Events"有三種事件可以選擇,下方已"OnInsertRow"做示範。
2.這裡將"必填輸入"的內容儲存起來,頁籤新增時帶入資料。
3.簡易方法
var inn = new Innovator();
var tmpThisItem = typeof(parent.document.thisItem) == "object" ? parent.document.thisItem : parent.thisItem;
var thisRel = tmpThisItem.getItemsByXPath("//Item[@id='" + relationshipID + "']").getItemByIndex(0);
var require = tmpThisItem.getProperty("test_require","");
try{
thisRel.setProperty("test_norelin", require);
}catch(e){
console.log(e);
}
grid.items_Experimental.set(relationshipID, "value", "test_norelin_D", require);
4.輸入完資料後,新增頁籤後,可以馬上看到必填輸入的資料寫入無關聯頁籤值。