Skip to content Skip to sidebar Skip to footer

Prevent Caching Data Of A DataTable

I have a ice:dataTable and in each row, there is a inputText. The record list is updated every time when fire a valueChangeListener on some other component. When it resets the reco

Solution 1:

This is a JSF problem, take a look at the following answer for details

Input fields hold previous values only if validation failed

To make it simple JSF keeps values in the partialViewContext so all what you have to do to reset all components in the partialViewContext

or if you are using primefaces you can simply add < p:resetInput target="tableId"/> to the field (nested inside) or if you are using OmiFaces then you can use ResetInputAjaxActionListener


Post a Comment for "Prevent Caching Data Of A DataTable"