Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Primefaces' PickList and I can't make it work. My problem is Converter. I followed the directions of another post, but in vain.

Here is my facelet

<p:pickList value="#{customerBean.preferredCategories}" var="category"
   itemLabel="#{category.description}" itemValue="#{category}" converter="#{categoryConverter}">
</p:pickList>

and here my custom converter

@FacesConverter(forClass=CategoryLevelView.class,value="categoryLevelConverter")
public class CategoryConverter implements Converter {

   public String getAsString(FacesContext context, UIComponent component, Object value) {


      return String.valueOf(((Category) value).getId());
   }
   public Object getAsObject(FacesContext arg0, UIComponent arg1, String value) {

      Category category = new Category();
      category.setId(Integer.parseInt(value));   
      return category;
   }
}

Category is composed by an id (int) and a description (String) I want both source and target Lists to display the description String, and the selected categories set as a List of Category in my bean. Both lists are correctly loaded in the bean and the DualListModel is populated in preferredCategories. The problem is the PickList is not even rendered. Nothing happens, no error displayed, the page just stops rendering when the turns arrives to PickList, and I think it's because a wrong usage of converter. Which would be a correct way to implement my this case?

Thanks.

share|improve this question
You can add a comment under any answer. Just click the link that says add comment. – Tim Post Aug 21 '11 at 18:39

4 Answers

I think

@FacesConverter(forClass=CategoryLevelView.class,value="categoryConverter")
public class CategoryConverter implements Converter {

should be

@FacesConverter(forClass=Category.class,value="categoryConverter")
public class CategoryConverter implements Converter {

Change value of forClass to Category.class.

And, you should not need to mention the value of converter attribute in <p:picklist.

share|improve this answer

In this line:

@FacesConverter(forClass=CategoryLevelView.class,value="categoryLevelConverter")

It looks like you're trying to set the converter id to categoryLevelConverter.

In this line of your Facelet:

converter="#{categoryConverter}"

The converter id does not match.

share|improve this answer

i dun know if u have solved ur prob but if not u can try this. In the getAsObject method , what u r doing is creating a new category object and setting its id and returning it. I think what you should do here is get the category from the database with that id and then return that.

share|improve this answer

try this converter , primefacesconverterexample I think that it should work.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.