[JBoss JIRA] Created: (RF-11329) Calendar - client side validation
by Jan Papousek (JIRA)
Calendar - client side validation
---------------------------------
Key: RF-11329
URL: https://issues.jboss.org/browse/RF-11329
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Environment: RichFaces 4.1.0-SNAPSHOT r.d0f9c11eb0dacc1444c0a3182b12567e28aef6bc
Metamer 4.1.0-SNAPSHOT r.22654
Mojarra 2.1.2-FCS
Apache Tomcat 6.0.32
OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux
Firefox 5.0 @ Linux x86_64
Reporter: Jan Papousek
Metamer page - faces/components/richCalendar/csv.xhtml:
*scenario A - wrong value -> correct value -> validator message is still present*
# choose day which won't pass the validation
# validator message is displayed
# change the day to the one which should pass the validation
# validator message is still present (it shouldn't be)
*scenario B - correct value -> wrong value -> validator message isn't present*
# choose day which should pass the validation
# validator message isn't displayed (correct)
# change the day to the one which won't pass the validation
# validator message isn't present (it should be)
The same behaviour occurs with rich:inplaceSelect component - JIRA https://issues.jboss.org/browse/RF-11328
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years
[JBoss JIRA] Created: (RF-11276) Popup Panel - input elements
by Jan Papousek (JIRA)
Popup Panel - input elements
-----------------------------
Key: RF-11276
URL: https://issues.jboss.org/browse/RF-11276
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.1.0.Milestone1
Environment: RichFaces 4.1.0-SNAPSHOT r.d0f9c11eb0dacc1444c0a3182b12567e28aef6bc
Metamer 4.1.0-SNAPSHOT r.22610
Apache MyFaces JSF-2.1 Core Impl 2.1.1
Apache Tomcat 6.0.32
OpenJDK Runtime Environment 1.6.0_22-b22 @Linux
Internet Explorer 8.0 @ Win32
Reporter: Jan Papousek
The sample faces/components/richPopupPanel/formInsidePanel.xhtml in Metamer doesn't work properly.
# write something into input1 element
# click on the "Call the popup" button
# fill input elements in the popup panel
# click on the "Save" button
Using Mojarra only the output1 is updated.
Using MyFaces no output is updated.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years
[JBoss JIRA] Created: (RF-11273) Popup Panel - diagonal resizement
by Jan Papousek (JIRA)
Popup Panel - diagonal resizement
---------------------------------
Key: RF-11273
URL: https://issues.jboss.org/browse/RF-11273
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.1.0.Milestone1
Environment: RichFaces 4.1.0-SNAPSHOT r.d0f9c11eb0dacc1444c0a3182b12567e28aef6bc
Metamer 4.1.0-SNAPSHOT r.22610
Apache MyFaces JSF-2.1 Core Impl 2.1.1
Apache Tomcat 6.0.32
OpenJDK Runtime Environment 1.6.0_22-b22 @Linux
Internet Explorer 8.0 @ Win32
Reporter: Jan Papousek
It's nearly impossible to resize the popup panel diagonally. The cursor changes correctly when it over the right bottom corner, but only vertical or horizontal resizement is allowed. This can be reproduced in Metamer: faces/components/richPopupPanel/simple.xhtml.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years
[JBoss JIRA] (RF-11621) Use the path to determine if mobile components should be displayed, rather than the useragent
by Brian Leathem (Created) (JIRA)
Use the path to determine if mobile components should be displayed, rather than the useragent
---------------------------------------------------------------------------------------------
Key: RF-11621
URL: https://issues.jboss.org/browse/RF-11621
Project: RichFaces
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Components: mobile, showcase
Affects Versions: 4.1.0.Milestone3
Reporter: Brian Leathem
Assignee: Brian Leathem
Priority: Critical
Fix For: 4.1.0.CR1
Useragent detection to direct one to the mobile or desktop showcase is fine, and works well. However, once you arrive at the showcase, the behavior should be consistent, and the useragent should no longer be consulted for conditional rendering of the component samples. Rather, the path should be queried, to determine if we are in the mobile view.
--
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-11577) collapsibleSubTableToggler icons not working
by u j (Created) (JIRA)
collapsibleSubTableToggler icons not working
--------------------------------------------
Key: RF-11577
URL: https://issues.jboss.org/browse/RF-11577
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tables
Affects Versions: 4.0.0.Final
Reporter: u j
If I do
<rich:collapsibleSubTableToggler collapsedIcon="chevronDown" expandedIcon="chevronUp"/>
the standard icons disappear.
The analogous setting works for collapsiblePanel.
By the way, I do this because the chevrons are IMHO the wrong way around in the standard. E.g. in MS Outlook they arrows point to the direction of the anticipated movement.
This can be argued, but the misfunction described above is independent of it.
--
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] Created: (RF-4582) RichFaces JSMin compressor can create invalid Javascript
by Matt Wheeler (JIRA)
RichFaces JSMin compressor can create invalid Javascript
--------------------------------------------------------
Key: RF-4582
URL: https://jira.jboss.org/jira/browse/RF-4582
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: Windows XP
Reporter: Matt Wheeler
If a Javascript file has something like:
var something = 'abc' + ++this.increment;
then, after compression, it will look something like var a='abc'+++this.increment. This may not be the exact translation, but, the important part is the three plus signs together which make the Javascript invalid. It can of course be fixed by changing the original script to var something = 'abc' + (++this.increment);, but everyone may not have that liberty. I tried this with the YUI Compressor, and it seemed to handle it correctly, but we could not use that for other reasons.
--
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
13 years