I have two pages, one page has a command button (page 1)with a backed action event that update the database. The other page has a data table that display the value of that database.(page 2)
When I trigger that command on page 1 and navigate to page two the data table is not updating. I am using primeface (jsf) and ejb.
So I was wondering if Requestcontext.update(":page2:datatable") will update the data table on page two or is there a better way of updating the datatable.
@RequestScopedor@ViewScoped. Also, check that the data is updated in your database and you recover the list in page 2 from database and not from a session parameter. – Luiggi Mendoza Jan 24 at 23:23RequestContextis only valid for the current request, navigating to another page breaks the current request. 3)If a full page render,triggered by navigation, doesn't update your datatable, an ajax call won't update it. Your code has a fundamental problem that all the ajax tricks in the known universe will not overcome. Please post your code here if you need any assistance with it – kolossus Jan 25 at 1:13