[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, 2 months
[JBoss JIRA] Created: (RF-9111) Validation and rich:dataTable sorting are broken
by Menashe (JIRA)
Validation and rich:dataTable sorting are broken
------------------------------------------------
Key: RF-9111
URL: https://jira.jboss.org/browse/RF-9111
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Environment: seam 2.2.1.cr2
Reporter: Menashe
I have datatable with sort but when one of the rows fails validation that gets a 'value is required' error message if submitted blank. However, i am still able to click on the column header and resort a table with a validation error but that error remains on the same row that it was originally flagged no matter how the data is sorted. It should either sort and move validation error appropriately or disable sorting when there are validation errors. The way it currently behaves makes it impossible to use with jsf validation framework.
--
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
13 years, 3 months
[JBoss JIRA] Created: (RF-10740) collapsibleSubTableToggler with expandMode="ajax" executes collapsibleSubTable on server
by Martin Kočí (JIRA)
collapsibleSubTableToggler with expandMode="ajax" executes collapsibleSubTable on server
----------------------------------------------------------------------------------------
Key: RF-10740
URL: https://issues.jboss.org/browse/RF-10740
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tables
Affects Versions: 4.0.0.CR1
Environment: richfaces 4.0, mojarra 2.0.4
Reporter: Martin Kočí
With example below request contains javax.faces.partial.execute=form:dataTable:0:collapsibleSubTable
and that triggers validation on inputText.
<r:dataTable id="dataTable" value="#{bean.rowValues}" >
<r:column>
<r:collapsibleSubTableToggler for="collapsibleSubTable" />
</r:column>
<r:collapsibleSubTable id="collapsibleSubTable" expandMode="ajax">
<f:facet name="header">
<h:inputText id="inputText" required="true" />
</f:facet>
</r:collapsibleSubTable>
</r:dataTable>
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 3 months