It says that your roomListByOrganization is null, which means that public List
getRoomListByOrganization() didn't return anything?
If it's ok to have empty roomListByOrganization you need to initalize it with empty
list;
Like
| @SelectItems(valueStrategy=SelectItems.Strategy.OBJECT,
labelMethod="getname")
| private List<Room> roomListByOrganization = new ArrayList(Room);
|
I'm using @SelectItems from
http://www.jroller.com/page/pmuir?entry=selectitems_revisited with the EntityConverter,
and find it working quite nicely. Thou there're couple of bugs (see the end of the
blog) in 1.0rc4, but those can be fixed easily.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3978958#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...