Just wondering if it is possibly to dynamically add elements (in AJAX fashion) to a form using h:dataTable
without always submitting the current contents? Normally one has to always send the full contents of the datatable, because the whole datatable is re-rendered. If the datatable gets big (say, 100 rows) this can radically slow down the page, as each row always gets posted.
Doing this with raw JS this is not a problem, but can it be avoided with JSF? Of course if we don't send all the row data with the AJAX request, it remains lightweight, but we will lose all the changes made to the form.