文章目录
- 金蝶云星空表单插件获取控件值
- 获取主键
- 获取文本
- 获取日期
- 获取数值
- 获取基础资料
金蝶云星空表单插件获取控件值
获取主键
正确:
this.View.Model.GetPKValue();
错误:
获取文本
this.View.Model.GetValue("FBILLNO")
获取日期
this.View.Model.GetValue("F_XHWT_Date")
获取数值
this.View.Model.GetValue("FQty")
获取基础资料
this.View.Model.GetValue("F_XHWT_CustId_Id")
结果是null
正确:
this.View.Model.GetValue("F_XHWT_CustId")
(this.View.Model.GetValue("F_XHWT_CustId") as DynamicObject)["Id"]