Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using the datatable of Primefaces, where the User is able to select a row and edit it. The datatable contains about 10 pages, furthermore it includes a paginator and the filter feature.

So, if the user selects a row (e.g. from page 3) using the filtering and manipulate it, the datatable updates the value and goes back to page 1. But I need to display page 3, the page where the row is selected.

That's how my datatable looks like:

    <p:dataTable id="dataTable" var="row"
                widgetVar="dataTableWidget" style="overflow:hidden;"
                value="#{bean.tableData}"
                filterEvent="enter"
                filteredValue="#{bean.filteredTableData}"
                paginator="true" rows="20" paginatorPosition="bottom"
                rowKey="${row.id}"
                selection="#{bean.selectedRow}"
                paginatorTemplate="{CurrentPageReport}  {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
                editable="true">

Thanks for help!

share|improve this question
Try to keep the datatable into the previous state before editing, just don't update it. However you should spicify your edition code, I suppose you're updating it after rowEdit event? – Xtreme Biker Mar 1 at 17:01
do you update whole datatable after user is done editing? – rootkit Mar 1 at 19:31
Yes, the entire table. – user1966116 Mar 2 at 9:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.