Hello Tara, Currently the pprPanelGroup only supports full form submissions.
Using a datascroller to only show for instance 10 rows per page should help to speed up the process. I don't know if thats possible in your case. If you need to display all the rows at once you could update both totals using plain JavaScript. On most clients that should be faster than any AJAX solution since its just some basic math compared to XMLHTTP request response. hope this helps best wishes Ernst On 10/24/07, Tara Peltier <[EMAIL PROTECTED]> wrote: > > I have a datatable where each cell is an inputText component. The dataTable > needs to have totals for each row and for each column. The totals need to > be updated as the user enters numbers in the dataTable. > > pprPanelGroup works great -- I put a pprPanelGroup around each total, and it > listens for the appropriate events. > > But ... each time the pprPanelGroup detects an event, it submits the entire > form -- all of the cells in the dataTable, not just the single cell whose > value changed. This gets pretty slow when there's 70+ cells in the > dataTable. > > In ajax4jsf, there's the concept of ajaxSingle=true, where only a single > form element is submitted. Is there anything similar in pprPanelGroup? > > I'm also open to better suggestions on how to accomplish row & column totals > on a datatable. > > Thanks in advance, > Tara Peltier > -- > View this message in context: > http://www.nabble.com/pprPanelGroup---can-it-submit-only-a-single-form-element--tf4685216.html#a13388802 > Sent from the MyFaces - Users mailing list archive at Nabble.com. > >

