[richfaces-issues] [JBoss JIRA] Created: (RF-2585) Sorting Feature: icons doesn't appears if sorting changed in selfSorted mode

Ilya Shaikovsky (JIRA) jira-events at lists.jboss.org
Tue Mar 18 12:17:57 EDT 2008


Sorting Feature: icons doesn't appears if sorting changed in selfSorted mode
----------------------------------------------------------------------------

                 Key: RF-2585
                 URL: http://jira.jboss.com/jira/browse/RF-2585
             Project: RichFaces
          Issue Type: Bug
    Affects Versions: 3.2.0
            Reporter: Ilya Shaikovsky
         Assigned To: Sergey Halipov
             Fix For: 3.2.0


<ui:composition xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:a4j="http://richfaces.org/a4j"
      xmlns:rich="http://richfaces.org/rich">
	<style>
		.center{
			text-align:center;
		}
	</style>
	<h:form>
		<rich:dataTable value="#{capitalsBean.capitals}" var="cap" width="300px" columnClasses="center">
			<f:facet name="header">
				<h:outputText value="Sorting Example"/>
			</f:facet>
			<rich:column>
				<f:facet name="header">
					<h:outputText value="State Flag"></h:outputText>
				</f:facet>
				<h:graphicImage value="#{cap.stateFlag}"/> 
			</rich:column>
			<rich:column sortBy="#{cap.state}"> 
				<f:facet name="header">
					<h:outputText value="State Name"></h:outputText>
				</f:facet>
				<h:outputText value="#{cap.state}"></h:outputText>
			</rich:column> 
			<rich:column sortBy="#{cap.name}">
				<f:facet name="header">
					<h:outputText value="State Capital"></h:outputText>
				</f:facet>
				<h:outputText value="#{cap.name}"/> 
			</rich:column>
		</rich:dataTable>
	</h:form>
</ui:composition>

sorting works fine but icons doesn't shown after sorting change and initially.

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

        



More information about the richfaces-issues mailing list