select menu problem
Hi can anyone tell me whats wrong with this:
I have select menu in my jsp as follows:
<select name="selectRowCount" size="1" onchange="document.forms['search'].submit()" >
<option value="/devices/search.faces?rowsPerPage=5">5</option>
<option value="/devices/search.faces?rowsPerPage=10">10</option>
<option value="/devices/search.faces?rowsPerPage=25">25</option>
<option value="/devices/search.faces?rowsPerPage=50">50</option>
<option value="/devices/search.faces?rowsPerPage=0" selected="selected">All</option>
</select>
and in the backing bean i have:
publicint getRowsPerPage(){
return rowsPerPage;
}
publicvoid setRowsPerPage(int rowsPerPage ){
this.rowsPerPage = rowsPerPage;}
what am i missing. i just need to set the value i select into the backing bean

