| Author |
trouble with f:selectItems
|
Sushma Sharma
Ranch Hand
Joined: Jun 02, 2005
Posts: 139
|
|
Hi, I am trying to use f:selectItems within a f:selectManyListBox, but I am getting exception. here is my code. And below is the stackTrace. ============================================================== please help. If I remove the select part, everything is working fine. Thanks, Sushma
|
 |
Richard Green
Ranch Hand
Joined: Aug 25, 2005
Posts: 536
|
|
hmm. not sure whats wrong. but i have something similar to public List<SelectItem> getCames() { List<SelectItem> selectItems = new ArrayList<SelectItem>(); for (Item item : ctemList) { if (item.getName()!=null) { selectItems.add(new SelectItem(item.getName(), item.getName(),item.getName())); } } return selectItems; } in my code and it works fine.
|
MCSD, SCJP, SCWCD, SCBCD, SCJD (in progress - URLybird 1.2.1)
|
 |
 |
|
|
subject: trouble with f:selectItems
|
|
|