check box selection is failing
744282Mar 28 2011 — edited Mar 30 2011I have a simple query with a checkbox that builds a report.
select apex_item.checkbox (1,AVAIL_TIME, 'UNCHECKED', ':', 'f01_' || '#ROWNUM#')" ",
avail_time, stid from sln_appt_temp3 order by avail_time;
First thing I noticed was I had to change the checkbox item to display as "simple checkbox" otherwise I'd just have the text to create the checkbox in my rows.
I want to perform an insert based on the checkbox selection but when I loop for i in 1 .. apex_application.g_f01:COUNT
nothing is happening. When I capture the apex_application.g_f01:COUNT and display it the count is zero no matter how many boxes I check.
Am I missing something here.
Any ideas?