Example: test.xhtml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"> <h:head> <title>JSF edit data to data table example.</title> </h:head> <h:body> <h2>JSF edit data to data table example.</h2> <h:form> <h:dataTable value="#{test.students}" var="student"> <h:column> <f:facet name="header">Name</f:facet> <h:inputText value="#{student.name}" rendered="#{student.editable}" /> <h:outputText value="#{student.name}" rendered="#{!student.editable}" /> </h:column> <h:column> <f:facet name="header">Class</f:facet> … Read more