> > Long value should not require convertion. > Cagatay, do you mean this issue? > > https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=1506 >
I guess it was this one: http://old.nabble.com/ERROR%3A-Value-is-not-a-valid-option-ts9094402.html I don't have access to myfaces code right now, I'll try to find out what is going on. On Wed, Feb 17, 2010 at 3:27 PM, Anton Gavazuk <[email protected]>wrote: > yes, will try - its my final option :) > > 2010/2/17 Cagatay Civici <[email protected]> > > > Is room.getId() Long as well? > > > > I remember seeing a similar thread in myfaces list, can't remember the > > reason for this. > > > > Can you try with a string to see if it makes a difference. > > > > private String currentRoomCategory; > > > > public List<SelectItem> getRoomCategories() { > > List<SelectItem> items = new > > ArrayList<SelectItem>( > > > > > > roomCategories.size()); > > > for (RoomCategory room : roomCategories) { > > > items.add(new SelectItem(String.valueOf(room.getId()), > > > room.getCategoryName())); > > > } > > > return items; > > > > > > > > On Wed, Feb 17, 2010 at 2:55 PM, Anton Gavazuk <[email protected] > > >wrote: > > > > > Cagatay, > > > > > > please, look below > > > > > > java snippet > > > > > > .... > > > > > > private Long currentRoomCategory; > > > > > > > > > public List<SelectItem> getRoomCategories() { > > > List<SelectItem> items = new > > > ArrayList<SelectItem>(roomCategories.size()); > > > for (RoomCategory room : roomCategories) { > > > items.add(new SelectItem(room.getId(), > > room.getCategoryName())); > > > } > > > return items; > > > } > > > > > > and JSF > > > > > > <h:selectOneMenu id="in_rcategory" > > > value="#{localizeBean.currentRoomCategory}"> > > > <f:selectItems > > value="#{localizeBean.roomCategories}"/> > > > </h:selectOneMenu> > > > > > > > > > > > > > > > 2010/2/17 Cagatay Civici <[email protected]> > > > > > > > Anton, can you provide your code? > > > > > > > > On Wed, Feb 17, 2010 at 2:50 PM, Anton Gavazuk < > [email protected] > > > > >wrote: > > > > > > > > > Hi Cagatay, > > > > > > > > > > you are right - selectOneMeny is causing error, > > > > > > > > > > value is selected, so is being submitted, - reason is in converter, > > > > > > > > > > please, correct me if I'm wrong - Long value doesnt require > > converter, > > > > > does > > > > > it? > > > > > > > > > > Thanks, > > > > > Anton > > > > > > > > > > 2010/2/17 Cagatay Civici <[email protected]> > > > > > > > > > > > selectOneMenu's can cause this if the selectitems collection of > > this > > > > > > component does not contain the submitted&converted value. > > > > > > > > > > > > Also if you set <h:messages showDetail="true", that would help to > > > > > identify > > > > > > the problematic component info. > > > > > > > > > > > > On Wed, Feb 17, 2010 at 2:17 PM, Anton Gavazuk < > > > [email protected] > > > > > > >wrote: > > > > > > > > > > > > > Hi all, > > > > > > > > > > > > > > stuck with a problem - have a form with several input > components: > > > > > > > selectOneMenu and inputText; and commandButton. Input > components > > > dont > > > > > > have > > > > > > > any validators and required atrributes are not set. > > > > > > > But when form is being submitted I'm getting standart > "Validation > > > > > error" > > > > > > > message in message queue, and I cannot find what could cause > this > > > > > > > validation > > > > > > > error. > > > > > > > Is there any way (except debugging myfaces source code) to > > identify > > > > > what > > > > > > is > > > > > > > the issue? > > > > > > > > > > > > > > MAny thanks, > > > > > > > Anton > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > Cagatay Civici > > > > > > JSF EG | PrimeFaces Lead | Apache MyFaces PMC > > > > > > http://www.primefaces.org > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > Cagatay Civici > > > > JSF EG | PrimeFaces Lead | Apache MyFaces PMC > > > > http://www.primefaces.org > > > > > > > > > > > > > > > -- > > Cagatay Civici > > JSF EG | PrimeFaces Lead | Apache MyFaces PMC > > http://www.primefaces.org > > > -- Cagatay Civici JSF EG | PrimeFaces Lead | Apache MyFaces PMC http://www.primefaces.org

