标签:
据笔者所知,Apex 4.x 是没有提供可编辑交互报告组件的。这就需要我们手动实现。其实这也并不是很复杂,只需要简单几步。1. 根据向导建立一个interactive report。查询语句可以如下。
select apex_item.hidden(1,e.id) || e.name as staff, apex_item.select_list_from_lov(p_idx=>2,p_value=>e.department_id,p_lov=>‘lov_department‘) as department from employee e; |
2. 创建一个按钮用于提交页面。
3. 创建一个"After Submit‘ PLSQL process
begin FOR i IN 1 .. apex_application.g_f01.COUNT LOOP update employee set department_id=apex_application.g_f02(i) where id=apex_application.g_f01(i); END LOOP; end; |
版权声明:本文为博主原创文章,未经博主允许不得转载。
Oracle Apex 实用笔记系列 6 - 可编辑交互报告 Editable Interactive Report
标签:
原文地址:http://blog.csdn.net/kswaking/article/details/47720345