Rich data table commits entire form when sorting is used.
---------------------------------------------------------

                 Key: RF-4524
                 URL: https://jira.jboss.org/jira/browse/RF-4524
             Project: RichFaces
          Issue Type: Bug
    Affects Versions: 3.2.1
            Reporter: Sergey Halipov


<h:form>
<h:inputText required="true" id="test" value="#{bean.test}" />
<rich:message for="test" />
<rich:dataTable value="#{product.vehicleInfos}" var="vehicle" 
styleClass="width100proc"
                        style="text-align: center;" id="vehicleList"
                        reRender="vehicleList" ajaxSingle="true" >
                
                <rich:column style="width: 40%;" sortBy="#{vehicle.model}" >
                        <f:facet name="header" >
                                <h:outputText 
value="${msg['transferBestOffer.result.vehicleModel']}" />
                        </f:facet>
                        #{vehicle.model}
                </rich:column>
.................
</rich:dataTable>
</h:form>

When I click column header table is resorted as expected but entire form is 
submitted so there are unneeded validation messages for required inputs outside 
dataTable.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        
_______________________________________________
richfaces-issues mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/richfaces-issues

Reply via email to