model « Datatable « JSF Q&A





1. Why input (for example h:inputText) nested in h:dataTable do not update Bean model?    stackoverflow.com

I have jsf page:

....
<form jsfc="h:form" action="">
  <h:dataTable value="#{newMusician.strings}" var="preferredMusicGenre" id="musicGenresSelectTable">
    <h:column>
      <h:inputText value="#{preferredMusicGenre}" immediate="true"/>
     </h:column>
   </h:dataTable>
 ...