Home » Developer & Programmer » Application Express, ORDS & MOD_PLSQL » Need help trying to read muliple checkboxs
Need help trying to read muliple checkboxs [message #387524] Thu, 19 February 2009 14:03
csphard
Messages: 8
Registered: February 2009
Junior Member
How can I read information from more than check box group.
Example of what I am trying to read
p1_checkboxgroup1 (DISPLAYEDS A[] B[] C[] D[] )
p1_checkboxgroup2 (DISPLAYEDS 1[] 2[] 3[] 4[] )
p1_checkboxgroup3 (DISPLAYEDS M[] N[] O[] P[] )

I am currently doing the following to get the answer from 1 checkbox group

DECLARE
as_check_box htmldb_application_global.vc_arr2;
begin
delete from TBL_DP_ACTIONS where ats_no = :P2_ats_no;
as_check_box := htmldb_util.string_to_table(:P2_test,':');
FOR i IN 1..as_check_box.count
loop
insert into TBL_DPA27_ACTIONS (ATS_NO,ACTION_CODE,NOA_DATE,EFF_DATE)
values(:P2_ats_no,as_check_box(i),to_date(:P2_test_NOA,'MM/DD/YYYY'),to_date
(:P2_test_E_DT,'MM/DD/YYYY'));
end loop;
end;


Previous Topic: how to set region alignment (like left,right,center....)
Next Topic: What is meaning of f?p in URL?
Goto Forum:
  


Current Time: Thu Mar 28 07:17:07 CDT 2024