也可以在可编辑控件上执行计算功能

发布于 2024-10-25 06:50:31 字数 102 浏览 2 评论 0原文

我正在使用特定节点的计算属性,该节点可编辑以最初获取默认值。当控件最初加载时,将根据该特定节点的计算属性填充默认值。但是当我覆盖默认值时,覆盖的值不会绑定到该节点。这个问题有什么解决办法吗?

I am using the calculate attribute for a particular node which is editable to get a default value initially. When the control loads initially the default value is getting populated depending upon the calculate attribute for that particular node. But when i override the default value, the overridden value is not getting binded to that node. Is there any solution for this problem ?

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

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

发布评论

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

评论(1

给不了的爱 2024-11-01 06:50:31

是的,您可以允许用户编辑您已计算的节点的值。为此,在 xforms:bind 中,显式添加 readonly="false()",作为自动指定 calculate 的节点变为只读。如果您这样做,请记住,calculate 也会在用户编辑字段后运行,因此需要以不会覆盖用户输入的值的方式编写表达式。通常,您会执行类似以下操作: calculate="if (. = '') then {some expression} else .",如果用户确实键入了某些内容,则不会覆盖用户键入的内容。

Yes, you can allow users to edit the value of a node for which you have a calculate. For this, in the xforms:bind, explicitly add readonly="false()", as a node for which you specify a calculate automatically becomes readonly. If you do this, keep in mind that the calculate also runs after users edited the field, so that expression needs to be written in such a way that it doesn't overwrite the value entered by users. Often you would do something like: calculate="if (. = '') then {some expression} else .", not to overwrite what users typed if they did type something.

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