如何访问 APEX 中选择列表控件的值?

发布于 2024-12-14 06:36:32 字数 89 浏览 3 评论 0原文

我有一个选择列表和一个删除按钮。单击删除按钮时,应该运行查询从数据库中删除所选项目。如何引用选择列表中的选定项目?我可以通过以下方式引用选择列表:P11_ITEMS

I have a select list and a DELETE button. When the delete button is clicked, a query is supposed to run DELETING the selected item from the database. How can I reference the selected item in the select list? I can reference the select list by :P11_ITEMS

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

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

发布评论

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

评论(2

东北女汉子 2024-12-21 06:36:32

使用 Apex 4.01,我创建了以下示例:

一个仅包含选择列表和删除按钮的页面

在此处输入图像描述

I选择 ALLEN 并按删除

在此处输入图像描述

,您可以看到 ALLEN 现已被删除。

除了创建这两个项目之外,唯一的其他项目是页面处理 PLSQL 进程,称为delete_emp。

在此处输入图像描述

delete_emp 进程具有以下引用选择列表的删除语句。

在此处输入图像描述

Using Apex 4.01, I created the following example:

A page with just a select list and a delete button

enter image description here

I select ALLEN and press delete

enter image description here

and you can see ALLEN has now been deleted.

Other than creating the two items, the only other item is a Page Processing PLSQL process, called delete_emp.

enter image description here

The delete_emp process has the following delete statement that references the select list.

enter image description here

墨洒年华 2024-12-21 06:36:32

您应该能够通过引用您的选择列表 :P11_ITEMS 来引用您选择的选项。但是,如果您的会话状态没有此项的当前值,则您的页面处理可能会出现故障。确保页面提交后运行页面进程(这会将选择列表项值保存到数据库以供以后使用)。

You should be able to reference your selected option by referencing your select list :P11_ITEMS. But if your session state has no current value for this item, your page processes may be out of order. Make sure you have your page process running after page submit (which saves the select list item value to the database for later use).

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