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

I need a solution to the below scenario.

I have a home page with a multi select list box and a submit button. Now the list box has only around 5 items but in future there can be 50 - 100 items in the list box. For each selected item, it should open the item details screen sequentially. For example if there are 10 items in the list box and when the user selects 2nd,5th and 9th item and clicks Submit should first show the 2nd details page then 5th and 9th page. After submitting from the 9th page the next page should be the home page.

I am going to use Jsf 2.0 or Jsf 2.1 I read somewhere that we should not use faces-config.xml in Jsf 2.x So I am not really sure how to implement the above scenario. Thanks for your help.

share|improve this question

1 Answer

Interesting question and you get a +1 from me.

First of all, you're talking about 50+ items, so obviously you will need one page capable of rendering all the item types.

On the page with the list box, when the form is submitted you can populate a java.util.List with the item IDs and set an index variable to 0. Then you should proceed to the item rendering page. On that page, you should handle the preRenderView event so that you show the item in the list at the current index. You can put that event in the @ConversationScoped bean also. Your form submit action for that page should also be handled in the @ConversationScoped bean, with the action incrementing the index so that on the next page load the next item will be shown.

Edit: Since you want one JSF page per item, then you can adapt this idea and return view IDs in your action.

public String submit() {
    // Some processing logic here
    // ...

    // Return the view ID of the next item and increment the index.
    return items.get(index++).getViewId();
}

Your item class might be something like this:

public class Item {
    private int id;
    private String name;
    private String description;
    private String viewId;

    // Getters and setters
    // ...
}

Hope this helps.

share|improve this answer
@Prakash: Just noticed a comment which you removed. Are you saying that you want a separate <item-name>.xhtml page per item? You don't mind redeploying the app when you add or change items? – Steve Taylor Jul 1 '11 at 20:34
Steve thanks for your reply. Yes I want separate <item-name>.xhtml and I don’t mind redeploying the app if the item changes. Let’s say the list box in the home page has Item1, Item2, Item3, Item4 and Item5. When the user multi selects Item1, Item4 and Item5 and submits the home page, the next page should be Item1.xhtml and when the user submits the Item1. xhtml the next page should be Item4. xhtml and when the user submits the Item4. xhtml the next page should be Item5. xhtml and then home page. xhtml So I want to know how to dynamically set the next pages based on the selected items.Thks – Solomon Jul 1 '11 at 21:05
@Prakash Well you should be able to adapt my suggestion to this. In the item class, have a String field containing the view-ID of the item's page. You can then return the appropriate view ID in the action. Easy! – Steve Taylor Jul 1 '11 at 22:05
ok. I will update you when I am doing my development. Thanks for your suggestion. – Solomon Jul 1 '11 at 22:28
Sure. Keep me posted. You might notice I edited the answer taking into account the separate pages. – Steve Taylor Jul 1 '11 at 22:50

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.