[JBoss JIRA] (RF-11846) rich:validator ignores @NotEmpty
by Mercer Traieste (Created) (JIRA)
rich:validator ignores @NotEmpty
--------------------------------
Key: RF-11846
URL: https://issues.jboss.org/browse/RF-11846
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-validators
Affects Versions: 4.1.0.Final
Environment: Maven 3, Tomcat 6.0.x, Ubuntu 11.10 x64, Glassfish jsf 2.x implementation
Reporter: Mercer Traieste
I want to have [client-side validation|http://richfaces-showcase.appspot.com/richfaces/component-samp...] using rich:validator in Richfaces 4.1, but @NotEmpty is ignored.
{code:xml}
<h:outputText value="#{text['firstName']}"/>
<h:inputText id="firstNameInput" value="#{richBean.firstName}">
<rich:validator/>
</h:inputText>
<rich:message for="firstNameInput"/>
{code}
{code:java}
import org.hibernate.validator.constraints.NotEmpty;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
import java.io.Serializable;
@ManagedBean
@SessionScoped
public class RichBean implements Serializable {
private static final long serialVersionUID = -2403138958014741653L;
@NotEmpty
private String firstName;
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
}
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years
[JBoss JIRA] (RF-11912) Improved Maven documentation
by Jason Lee (JIRA)
Jason Lee created RF-11912:
------------------------------
Summary: Improved Maven documentation
Key: RF-11912
URL: https://issues.jboss.org/browse/RF-11912
Project: RichFaces
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Components: doc
Affects Versions: 4.1.0.Final
Reporter: Jason Lee
Priority: Minor
The Maven documentation in the developers guide could be greatly improved if the relevant pom.xml elements were explicitly listed in the documentation. This information can be gleaned from the showcase app (which I did :), but having that in the docs themselves would make it easier for someone new to the project.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 1 month
[JBoss JIRA] (RF-11895) Richfaces showcase import into JBoss Tools/JBDS
by Burr Sutter (JIRA)
Burr Sutter created RF-11895:
--------------------------------
Summary: Richfaces showcase import into JBoss Tools/JBDS
Key: RF-11895
URL: https://issues.jboss.org/browse/RF-11895
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: examples
Affects Versions: 4.1.0.Final
Reporter: Burr Sutter
Importing RichFaces Showcase into JBDS5 M5 has the following error:
[ERROR] The project org.richfaces.examples:richfaces-showcase:4.1.0.Final (/Users/burr/Downloads/richfaces-4.1.0.Final/examples/richfaces-showcase/pom.xml) has 1 error
[ERROR] Non-resolvable parent POM: Could not find artifact org.richfaces:richfaces-root-parent:pom:4.1.0.Final in central (http://repo1.maven.org/maven2) and 'parent.relativePath' points at wrong local POM @ line 8, column 13 -> [Help 2]
[ERROR]
Same error on the command line.
Also in the readme.txt, it refers to "Jboss" - need to upper case that "b"
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 1 month