how to check multiple checkboxes?
417071Mar 31 2004 — edited Mar 31 2004Hi 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);