Oracle apex 复选框事件
我在我的 apex 应用程序中使用文本字段和按钮,并为按钮提供单击事件(动态操作)。按下按钮后,来自 SQL 的数据将使用以下 PL/SQL 代码插入到文本字段中:
declare
l_result varchar2(32700);
begin
for c1 in(
select ename
from emp
) loop
l_result := l_result || c1.ename || chr(10);
end loop;
:Px_TEXTAREA_ITEM := l_result;
end;
这可行,但现在我想将按钮事件与复选框事件交换。如何在 PL/SQL 查询中添加 if...else 语句,如果选中复选框则插入数据,如果未选中则清空文本字段?
I am using a text field and a button in my apex application with a click event (dynamic action) for the button. After the button was pressed, data from a SQL will be inserted into the text field with this PL/SQL code:
declare
l_result varchar2(32700);
begin
for c1 in(
select ename
from emp
) loop
l_result := l_result || c1.ename || chr(10);
end loop;
:Px_TEXTAREA_ITEM := l_result;
end;
This works but now I would like to exchange the button event with a checkbox event. How to add if...else statement inside the PL/SQL query, which inserts the data if the checkbox is checked and empty the text field if it's unchecked?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是有关如何使用带有复选框的 DA 的示例。这是 21.1 版本的情况,但该机制适用于任何版本。
功能:如果选中复选框,则员工 SCOTT 的工资加薪 1,如果未选中复选框,则员工 SCOTT 的工资减少 1。这是 EMP/DEMP 样本数据的结果。
P37_TOGGLE_SCOTT
。选中值“Y”,未选中值“N”P37_TOGGLE_SCOTT
的更改创建动态操作。客户端条件:“Item = Value”,Item:P37_TOGGLE_SCOTT,Value:Y应该很清楚如何将上述示例用于您的业务案例。
Here is sample on how to use a DA with a checkbox. This is on version 21.1 but the mechanism works for any version.
Functionality: if checkbox checked then employee SCOTT gets a salary raise of 1, if checkbox unchecked then employee SCOTT gets a salary decrease of 1. This is on EMP/DEMP sample data.
P37_TOGGLE_SCOTT
of type "Checkbox". Checked value "Y", unchecked value "N"P37_TOGGLE_SCOTT
named "Raise/Lower Scott Salary". Client condition: "Item = Value", Item: P37_TOGGLE_SCOTT, Value: YIt should be clear how to use the above sample for your business case.