I am completely new to Primefaces and jsf. I am facing problems in selection of row and editing row together. I have datatable.
<p:dataTable var="adminFileConfiguartionModel" value="#{adminFileController.adminFileConfigDataModel}" id="adminFileConfigID" editable="true" selection="#{adminFileController.adminFileSelectList}">
<p:ajax event="rowEdit" listener="#{adminFileController.onEdit}" update=":fileConfigForm:messages,:fileConfigurationForm:adminFileConfigID" />
<p:column id="checkBox" selectionMode="multiple" style="width:2%" />
'adminFileSelectList' is ArrayList .. when i complete editing part ,checked box is unchecked but still after submitting button previous value is stored in rowKey ..which i get from getRowData(String rowKey)... how to nullify that previous value..