如何从表单控件中获取价值?

时间:2014-08-07 12:47:43

标签: axapta x++ dynamics-ax-2012

如何从x ++中的StringEdit控件获取值并将其插入新记录?

现在我有:

ttsBegin;    
update_recordSet _empl setting Name=<and here goes input from control>
    where _empl.RecId==pole;   
ttsCommit;

1 个答案:

答案 0 :(得分:2)

这不是AX中的工作方式,但如果你坚持:

update_recordSet _empl setting Name = nameCtrl.text()
    where _empl.RecId == pole;

可以通过将nameCtrl属性设置为是来声明AutoDeclation控件。

也就是说,表格字段可能更容易to make the control bound