【发布时间】:2018-11-03 14:04:55
【问题描述】:
我已经使用下面的代码成功实现了穿梭列表
declare
tab apex_application_global.vc_arr2;
begin
tab := apex_util.string_to_table (:P14_NEW_1);
for i in 1..tab.count loop
insert into xxtest (COL1, COL2)
values (:P14_NEW, tab(i));
end loop;
commit;
end;
问题是每次用户打开表单时,它都不会在右侧显示最后选择的值,我不明白这个逻辑如何在页面加载时将选定的项目显示为保存在表格中的右侧
【问题讨论】:
标签: oracle oracle-apex