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

I have a newbie question in JSF, and particular in Richfaces.

I need my JSF application to have two pages showing the same tree, meaning that:

  • The two trees should be showing the same data
  • If I change something in one of the trees (i.e. open/close/add a node) the second tree should be automatically updated.

Is this possible? If yes, could you give me a brief outline?

UPDATE: Let me give some more details: two of the pages of the application will have this tree in their left pane. The first page will make the second one as a popup when a button is clicked. I want the two pages to show the same tree in sync.

Thanks!

share|improve this question

2 Answers

up vote 1 down vote accepted

You can use <a4j:push> to notify your trees about any changes.

share|improve this answer

Another option for others looking to be sure a part of their page is always up to date, check out the ajaxRendered attribute.

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.