[JBoss JIRA] Created: (RF-7204) Filtering with rich:column in a composition doesn't work properly.
by Mikhail Vitenkov (JIRA)
Filtering with rich:column in a composition doesn't work properly.
------------------------------------------------------------------
Key: RF-7204
URL: https://jira.jboss.org/jira/browse/RF-7204
Project: RichFaces
Issue Type: Bug
Components: component
Affects Versions: 3.3.2.CR1
Environment: IE6, IE7, IE8, FF2, FF3.0.10, Safari 3.1, Opera 9.62, Chrome 1.0.154.43(3.3.2-snapshot; facelets, jsf 1.2_12)
Reporter: Mikhail Vitenkov
Assignee: Nick Belaevski
#1. Create composition for column representation(column.xhtml) in following way:
<ui:composition>
<rich:column filterBy="#{obj[filterBy]}"
filterEvent="onkeyup">
<f:facet name="header">
<t:outputText value="#{title}" />
</f:facet>
<ui:insert/>
</rich:column>
</ui:composition>
#2. Define this composition in custom taglib:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE facelet-taglib PUBLIC
"-//Sun Microsystems, Inc.//DTD Facelet Taglib 1.0//EN"
"facelet-taglib_1_0.dtd">
<facelet-taglib>
<namespace>http://mihey.vit/tags</namespace>
<tag>
<tag-name>column</tag-name>
<source>column.xhtml</source>
</tag>
</facelet-taglib>
#3. Register taglib in web.xml:
<context-param>
<param-name>facelets.LIBRARIES</param-name>
<param-value>
/WEB-INF/myTags.taglib.xml
</param-value>
</context-param>
#4. Add custom tag in a page:
<h:form>
<rich:dataTable label="Table" value="#{custom.testList}" rows="10"
var="obj">
<my:column title="FIRST" filterBy="first">
<h:outputText value="#{obj.first}" />
</my:column>
<my:column title="SECOND" filterBy="second">
<h:outputText value="#{obj.second}" />
</my:column>
<my:column title="THIRD" filterBy="third">
<h:outputText value="#{obj.third}" />
</my:column>
<my:column title="LAST" filterBy="last">
<h:outputText value="#{obj.last}" />
</my:column>
</rich:dataTable>
</h:form>
#5. Navigate to the page and try to filter the 1st column by entering something in filter input.
#6. Verify filtering.
Actual behavior:
Filtering occurs only for the last column in 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
16 years, 7 months
[JBoss JIRA] Created: (RF-4428) 3.2.2.CR4: ajaxValidator doesn't find ValidatorMessages.properties
by Juergen Zimmermann (JIRA)
3.2.2.CR4: ajaxValidator doesn't find ValidatorMessages.properties
------------------------------------------------------------------
Key: RF-4428
URL: https://jira.jboss.org/jira/browse/RF-4428
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: RF 3.2.2.CR4, JSF 1.2_09, JBoss 4.2.3, Hibernate Validator 3.1.0.CR2, JDK 1.6.0_07
Reporter: Juergen Zimmermann
I have this entity class:
public class Kunde implements java.io.Serializable {
@Column(length=NACHNAME_LENGTH_MAX)
@NotNull(message="{kundenverwaltung.kunde.nachname.notNull}")
@Length(min=NACHNAME_LENGTH_MIN, max=NACHNAME_LENGTH_MAX, message="{kundenverwaltung.kunde.nachname.length}")
@Pattern(regex=NACHNAME_PATTERN, message="{kundenverwaltung.kunde.nachname.pattern}")
@XmlElement(required=true)
protected String nachname = "";
...}
The message keys like kundenverwaltung.kunde.nachname.length are declared in ValidatorMessages.properties and ValidatorMessages_de.properties. Both files are in the root of an EAR file. When doing Hibernate validation within the EJB module (resp. .jar file) there is no problem: the messages are picked up in the right language.
However, when changing an xhtml page to use the new rich:ajaxValidator like the following fragment, then only a message pops up containing the message key, e.g. kundenverwaltung.kunde.nachname.length (see above).
<h:form id="createForm">
<a4j:region>
<h:panelGrid id="panelGrid" columns="3" columnClasses="kundendetailsBezeichner, kundendetailsDaten">
<h:outputLabel value="#{i18n['createEinenKunden.nachname']}" for="nachname"/>
<h:inputText id="nachname"
value="#{kv.neuerFirmenkunde.nachname}"
required="true"
requiredMessage="#{i18n['createEinenKunden.nachname.required']}">
<rich:ajaxValidator event="onblur" reRender="fehlermeldungNachname"/>
</h:inputText>
<rich:message id="fehlermeldungNachname" for="nachname" errorClass="error" showSummary="true" showDetail="true">
<f:facet name="errorMarker">
<h:graphicImage url="/images/error.gif"/>
</f:facet>
</rich:message>
--
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
16 years, 7 months