• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

trouble with f:selectItems

 
Ranch Hand
Posts: 139
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
Ranch Hand
Posts: 536
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic