Axapta:以编程方式切换表单中的记录

发布于 2024-08-14 05:45:39 字数 196 浏览 4 评论 0原文

在 Dynamics AX 2009 中,如何以编程方式更改表单中的不同记录?

我的表单包含一个树视图和一组绑定数据字段。当单击树中的记录时(树中每个项目的数据值是我想在表单中编辑的项目的 RecId),我想将表单更改为该记录。

我一直使用 sysSetupForm 作为处理树的示例,但我无法隔离代码中发生更改记录的调用。

谢谢

In Dynamics AX 2009, how do you programmatically change to a different record in a form?

My form contains a treeview and a group of bound data fields. When clicking on a record in the tree (the data value for each item in the tree is the RecId of the item I'd like to edit in the form) I'd like to change the form to that record.

I've been using sysSetupForm as an example for working with a tree, but I'm having trouble isolating where the call to change records occurs in their code.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

策马西风 2024-08-21 05:45:39

一些例子:

some_table   table;
;
table = some_table:find(recid);
table_ds.findRecord(table);   // it's a form datasource method

Some example:

some_table   table;
;
table = some_table:find(recid);
table_ds.findRecord(table);   // it's a form datasource method
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文