users@javaserverfaces.java.net

Listboxes with data added via javascript

From: Arinté <arintejr_at_gmail.com>
Date: Thu, 27 Mar 2008 23:24:23 -0400

I have a jsf form that has some input boxes and a listbox. The user types info
in the input boxes and clicks the add button and that info is added to the
listbox via a javascript call. So, the problem I am having is how do I get that
info back into my backing bean?

I have this:
<h:selectManyListbox id="lists" value="#{cork.mist}" immediate="true">
<f:selectItems value="#{cork.list}"/>
</h:selectManyListbox>
but cork.mist is never called. BTW the list back usually starts off as empty...

Thanks...