| Author |
listbox help needed
|
David Pressick
Greenhorn
Joined: Sep 13, 2007
Posts: 1
|
|
We are new to JSF and were wondering how we can use a listbox and retain the change in value. The page only seems to retain the default value and we can't get it to change the value of the listbox. It doesn't seem to be calling this listener and the onChange doesn't seem to actually be working. The code we're using is below. Anyone see where we're in error? <h:selectOneListbox id="uiSelectionField" size="1" valueChangeListener="#{projectListener.uiInitialSelections}" onChange="submit()"> <f:selectItem itemValue="Environment" itemLabel="Environment"/> <f:selectItem itemValue="Status" itemLabel="Status"/> <f:selectItem itemValue="Priority" itemLabel="Priority"/> <f:selectItem itemValue="Release" itemLabel="Release"/> <f:selectItem itemValue="Issue Type" itemLabel="Issue Type"/> <f:selectItem itemValue="Function" itemLabel="Function"/> <f:selectItem itemValue="Module" itemLabel="Module"/> </h:selectOneListbox>
|
 |
A. Dusi
Ranch Hand
Joined: Sep 27, 2004
Posts: 114
|
|
First of all onChange has to be onchange. To capture your listbox selection, you need to provide the value attribute that maps to a backing bean's property of type String(since your itemValues are all String). On a different note, you do not need valueChangeListener or onchange-submit unless your other components on the same page should be repopulated based on your listbox selection.
|
 |
 |
|
|
subject: listbox help needed
|
|
|