如何在 Oracle Apex 中创建值响应复选框?
我有一个包含一些字段的页面,从数据库表加载,例如:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要将 ActiveUser 作为隐藏项,而是将其设为具有以下属性的复选框项:
(注意“显示额外值”设置为“否”)。
然后添加这样的计算:
(我的项目名为 P1_X)。此计算处理复选框的未选中值始终为 NULL 的事实,将其转换为“no”。
Instead of having ActiveUser as a hidden item, make it a Checkbox item with these attributes:
(Note Display Extra Values set to No).
Then add a computation like this:
(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'.