[JBoss JIRA] Created: (RF-10309) CSV: not working JSF validators.
by Ilya Shaikovsky (JIRA)
CSV: not working JSF validators.
--------------------------------
Key: RF-10309
URL: https://issues.jboss.org/browse/RF-10309
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-validators
Affects Versions: 4.0.0.Milestone5
Reporter: Ilya Shaikovsky
Assignee: Alexander Smirnov
Fix For: 4.0.0.CR1
f:validateLongRange and f:validateDoubleRange still not works for me. Both added causes ajax fallback to be used.
f: required, length and pattern works for me.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 12 months
[JBoss JIRA] Created: (RF-9666) Autocomplete: JS error after AJAX request
by Nick Belaevski (JIRA)
Autocomplete: JS error after AJAX request
-----------------------------------------
Key: RF-9666
URL: https://jira.jboss.org/browse/RF-9666
Project: RichFaces
Issue Type: Task
Security Level: Public (Everyone can see)
Affects Versions: 4.0.0.Milestone4
Reporter: Nick Belaevski
Assignee: py
Fix For: 4.0.0.Milestone4
For the following code:
<h:form>
<a4j:outputPanel ajaxRendered="true">
<h:messages />
</a4j:outputPanel>
<input:autocomplete mode="ajax" id="autocomplete"
autocompleteMethod="#{autoCompleteBean.autocomplete}"
value="#{value}">
<f:validateRequired />
</input:autocomplete>
</h:form>
values[i].toLowerCase is not a function
[Break on this error] processedValues.push(values[i].toLowerCase());
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 12 months
[JBoss JIRA] Created: (RF-10384) Redesign of switchable panels
by Nick Belaevski (JIRA)
Redesign of switchable panels
-----------------------------
Key: RF-10384
URL: https://issues.jboss.org/browse/RF-10384
Project: RichFaces
Issue Type: Task
Security Level: Public (Everyone can see)
Components: architectural
Affects Versions: 4.0.0.Milestone6
Reporter: Nick Belaevski
Assignee: Nick Belaevski
Priority: Critical
Fix For: 4.0.0.Milestone6
1) Panel item should be ActionSource2
1a) Parameters submission either by f:param/a4j:param should be supported
1b) All Ajax attributes/queues integration is specified at the item's level, not container
1c) Panel items should by default execute panel container by Ajax
2) Panel container should not have Ajax attributes - its only responsibility is control of selection
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 12 months
[JBoss JIRA] Created: (RF-10311) CSV: JSR-303 validators works using ajax falback only
by Ilya Shaikovsky (JIRA)
CSV: JSR-303 validators works using ajax falback only
-----------------------------------------------------
Key: RF-10311
URL: https://issues.jboss.org/browse/RF-10311
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-validators
Affects Versions: 4.0.0.Milestone5
Reporter: Ilya Shaikovsky
Assignee: Alexander Smirnov
Fix For: 4.0.0.CR1
Please check richfaces-showcase in SVN. Client Validation section and jsr303 page.
tried next ones :
@Length(min = 3, max = 12)
private String name = null;
@Pattern(regexp = "^[\\w\\-]([\\.\\w])+[\\w]+(a)([\\w\\-]+\\.)+[a-zA-Z]{2,4}$")
private String email = null;
@Min(value = 18)
@Max(value = 99)
private Integer age;
private String country;
private String jobTitle;
@AssertTrue
private boolean agreed;
And all of them not works. So decided to stop and ask you to check for my or CSV code general issues.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years