如何选择列表项中的所有值?

时间:2018-07-03 11:04:55

标签: oracle oracle11g oracle10g oracleforms

我正在使用“单向”按钮和“双向”按钮创建从一个列表项到另一个列表项的移位值。按下按钮后,我成功使用单个前进按钮创建了一个按钮,然后将单个值从一个项目列表移至第二个列表项目

enter image description here

![在此处输入图片描述] [2]

代码:

declare
n number;
v_val varchar2(100);
begin

  n := get_list_element_count('list2');
  add_list_element('list2', n + 1, :list1, :list1);


  n := get_list_element_count('list1');
  for i in 1..n loop
        v_val := get_list_element_value('list1',i);
       if v_val = :list1 then
               delete_list_element('list1',i);
       end if;
  end loop;
  end;

我想选择所有值,然后按两次前进按钮,然后将所有值从一个列表项移动到第二个列表项。

0 个答案:

没有答案