如何在输入的同一屏幕上使用安装程序变量

发布于 2024-12-19 08:25:27 字数 121 浏览 2 评论 0原文

如何在同一屏幕上获取输入屏幕的信息?例如,假设我有一个文本字段,用于设置名为 myVar 的变量,以及在同一屏幕上需要 myVar 值的按钮> 去工作。

How can I get the the information that's entered into a screen while still on the same screen? For example, suppose I've got a text field that sets a variable called myVar and a button on the same screen that needs the value of myVar to work.

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

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

发布评论

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

评论(1

寻梦旅人 2024-12-26 08:25:27

两种可能性:

1) 您的按钮操作脚本可以将所有表单组件上的输入保留为第一个操作。为此,请调用

formEnvironment.saveFormComponents();

context.getVariable("myVar") 将返回在同一屏幕上输入的值。

2)您可以在按钮的操作脚本中直接访问表单组件:

String text = ((JTextField)formEnvironment.getFormComponentById("123").
                  getConfigurationObject()).getText();

Two possibilities:

1) Your button action script can persist the input on all form components as its first action. To do that call

formEnvironment.saveFormComponents();

Then context.getVariable("myVar") will return the value that is entered on the same screen.

2) You directly access the form component in the action script of the button:

String text = ((JTextField)formEnvironment.getFormComponentById("123").
                  getConfigurationObject()).getText();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文