如何在 Oracle Apex 中创建值响应复选框?

发布于 2024-12-18 14:17:37 字数 251 浏览 1 评论 0原文

我有一个包含一些字段的页面,从数据库表加载,例如:

Name:   John Smith
ID:     jsa44
State:  MA
--Hidden--ActiveUser:yes

我想显示一个复选框,当 activeuser 为 yes 时选中该复选框,当 activeuser 为 no 时取消选中该复选框。另外,我想在复选框检查状态发生变化时更改 activeuser 的值。

我该怎么做?

I have a page with a few fields, loaded from a DB table, such as:

Name:   John Smith
ID:     jsa44
State:  MA
--Hidden--ActiveUser:yes

I want to display a checkbox that is checked when activeuser is yes and unchecked when activeuser is no. Also, I want to change the value of activeuser whenever the checkbox check status changes.

How would I do this?

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

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

发布评论

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

评论(1

挽清梦 2024-12-25 14:17:37

不要将 ActiveUser 作为隐藏项,而是将其设为具有以下属性的复选框项:
在此处输入图像描述

(注意“显示额外值”设置为“否”)。

然后添加这样的计算:
在此处输入图像描述

(我的项目名为 P1_X)。此计算处理复选框的未选中值始终为 NULL 的事实,将其转换为“no”。

Instead of having ActiveUser as a hidden item, make it a Checkbox item with these attributes:
enter image description here

(Note Display Extra Values set to No).

Then add a computation like this:
enter image description here

(My item was called P1_X). This computation handles the fact that the unchecked value of a checkbox is always NULL, converting that to 'no'.

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