Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

how to check multiple checkboxes?

417071Mar 31 2004 — edited Mar 31 2004
Hi everybody!

I have a page with a group of checkboxes. When the page is loaded one or more checkboxes have to be checked by default.
I'm using an SQL query to get the values that have to be checked out of my database. My problem is that every time the page is rendered, only one checkbox is checked. (the first one in the result of the SELECT)

This is what I have now:

under source of checkbox item
Alternate source used: Always, replacing any existing value in session state
Source type: SQL query
Maintain session state: Per session
Source value or expression:
  select id from servers where id in(
  select web_instances.server_id
  from web_instanties,websites
  where web_instanties.wst_id=:P25_ID);
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 28 2004
Added on Mar 31 2004
1 comment
657 views