First off, you probably need to use the UISelectMany, and then use
_javascript_ to select all of the items before submitting the form, you know
something like this:
var selectList =
document.getElementById(selectListId);
for(var i = 0;i < selectList.length;i++)
{
selectList.options[i].selected = true;
}
for(var i = 0;i < selectList.length;i++)
{
selectList.options[i].selected = true;
}
From: Gregg Bolinger [mailto:[EMAIL PROTECTED]
Sent: Tuesday, June 20, 2006 8:08 AM
To: MyFaces Discussion
Subject: Get All Values of SelectOneListBox
Thanks.

