[JBoss JIRA] (RF-12921) rich:validator: created message is escaped, even if the message component should not be escaped
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12921?page=com.atlassian.jira.plugin.s... ]
Brian Leathem reassigned RF-12921:
----------------------------------
Assignee: Brian Leathem
> rich:validator: created message is escaped, even if the message component should not be escaped
> -----------------------------------------------------------------------------------------------
>
> Key: RF-12921
> URL: https://issues.jboss.org/browse/RF-12921
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-validators
> Environment: RichFaces 4.3.2-SNAPSHOT
> Metamer 5.0.0-SNAPSHOT
> JBoss AS 7.1.1.Final
> Java(TM) SE Runtime Environment 1.7.0_09-b05 @ Linux
> Firefox 18.0 @ Linux x86_64
> Reporter: Jiří Štefek
> Assignee: Brian Leathem
> Priority: Minor
> Fix For: 4.3.2
>
> Original Estimate: 1 hour
> Remaining Estimate: 1 hour
>
> The created message is always escaped, even if the message component has its attribute @escape=false.
> Message components: rich:message, rich:messages, rich:notifyMessage, rich:notifyMessages.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 11 months
[JBoss JIRA] (RF-12928) ExtendedDataTable: columnsOrder doesnt work after changing order
by dako test (JIRA)
[ https://issues.jboss.org/browse/RF-12928?page=com.atlassian.jira.plugin.s... ]
dako test updated RF-12928:
---------------------------
Description:
According to the resolved bug RF-11776 I've tried the attribute "columnsOrder" in ExtendedDataTable.
I have a simple test case with a data table and an action button. Within the action button method I change the String Array of the attribute columnsOrder but the columns of the data table is rendered in the old order.
I have appended a test project to reproduce it. In this test project I have an a4j ajax button and a simple button, both arent working.
Best regards
was:
According to the resolved bug RF-11776 I tried the attribute columnsOrder in ExtendedDataTable.
I have a simple test case with a data table and an action button. Within the action button method I change the String Array of the attribute columnsOrder but the columns of the data table is rendered in the old order.
I have appended a test project to reproduce it. In this test project I have an a4j ajax button and a simple button, both arent working.
Best regards
> ExtendedDataTable: columnsOrder doesnt work after changing order
> ----------------------------------------------------------------
>
> Key: RF-12928
> URL: https://issues.jboss.org/browse/RF-12928
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-tables
> Affects Versions: 4.3.1
> Environment: Tomcat 7, Mojarra 2.1.21
> Reporter: dako test
> Attachments: JSF2-RichFaces-Test.zip
>
>
> According to the resolved bug RF-11776 I've tried the attribute "columnsOrder" in ExtendedDataTable.
> I have a simple test case with a data table and an action button. Within the action button method I change the String Array of the attribute columnsOrder but the columns of the data table is rendered in the old order.
> I have appended a test project to reproduce it. In this test project I have an a4j ajax button and a simple button, both arent working.
> Best regards
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 11 months
[JBoss JIRA] (RF-12832) Tomcat 6 test Deployments should define the expressionFactory
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-12832?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč resolved RF-12832.
-----------------------------
Resolution: Done
> Tomcat 6 test Deployments should define the expressionFactory
> -------------------------------------------------------------
>
> Key: RF-12832
> URL: https://issues.jboss.org/browse/RF-12832
> Project: RichFaces
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: tests - functional
> Reporter: Brian Leathem
> Assignee: Lukáš Fryč
> Fix For: 5.0.0.Alpha1
>
> Original Estimate: 1 hour
> Remaining Estimate: 1 hour
>
> JBoss EL is added as a dependency for tomcat deployments, however the expressionFactory needs to be configured to use the bundled EL implementation.
> Without the configuration below, tests that use advanced EL features will fail on Tomcat.
> For Mojarra implementations, the web.xml of the Deployment should contain:
> {code}
> <context-param>
> <param-name>com.sun.faces.expressionFactory</param-name>
> <param-value>org.jboss.el.ExpressionFactoryImpl</param-value>
> </context-param>
> {code}
> And MyFaces implementations, the web.xml of the Deployment should contain:
> {code}
> <context-param>
> <param-name>org.apache.myfaces.EXPRESSION_FACTORY</param-name>
> <param-value>org.jboss.el.ExpressionFactoryImpl</param-value>
> </context-param>
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 11 months
[JBoss JIRA] (RF-12929) PickList change event not firing correctly when ordering objects in target area
by Simon Plangger (JIRA)
Simon Plangger created RF-12929:
-----------------------------------
Summary: PickList change event not firing correctly when ordering objects in target area
Key: RF-12929
URL: https://issues.jboss.org/browse/RF-12929
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-selects
Affects Versions: 4.3.0.Final
Environment: JBoss AS 7
Reporter: Simon Plangger
The *change* event is not firing, when moving an element from the target area (selected side) to the top or to the bottom of the list. There is no problem with moving items and the change event as long as you don't make it the first or last entry.
To reproduce:
{code}
<rich:pickList
onchange="alert('changed')"
orderable="true"
>
<f:selectItem itemLabel="test 1" itemValue="test 1" />
<f:selectItem itemLabel="test 2" itemValue="test 2" />
<f:selectItem itemLabel="test 3" itemValue="test 3" />
<f:selectItem itemLabel="test 4" itemValue="test 4" />
<f:selectItem itemLabel="test 5" itemValue="test 5" />
</rich:pickList>
{code}
Just *select all* items and move them around.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 11 months
[JBoss JIRA] (RF-12928) ExtendedDataTable: columnsOrder doesnt work after changing order
by dako test (JIRA)
[ https://issues.jboss.org/browse/RF-12928?page=com.atlassian.jira.plugin.s... ]
dako test updated RF-12928:
---------------------------
Description:
According to the resolved bug RF-11776 I tried the attribute columnsOrder in ExtendedDataTable.
I have a simple test case with a data table and an action button. Within the action button method I change the String Array of the attribute columnsOrder but the columns of the data table is rendered in the old order.
I have appended a test project to reproduce it. In this test project I have an a4j ajax button and a simple button, both arent working.
Best regards
was:
According to the resolved bug RF-11776 I tried the attribute columnsOrder in ExtendedDataTable.
I have a simple test case with a data table and an action button. Within the action button method I change the String Array of the attribute columnsOrder but the columns of the data table is rendered in the old order.
I have appended a test project to reproduce. In this test project I have an a4j ajax button and an simple button, both arent working.
Best regards
> ExtendedDataTable: columnsOrder doesnt work after changing order
> ----------------------------------------------------------------
>
> Key: RF-12928
> URL: https://issues.jboss.org/browse/RF-12928
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-tables
> Affects Versions: 4.3.1
> Environment: Tomcat 7, Mojarra 2.1.21
> Reporter: dako test
> Attachments: JSF2-RichFaces-Test.zip
>
>
> According to the resolved bug RF-11776 I tried the attribute columnsOrder in ExtendedDataTable.
> I have a simple test case with a data table and an action button. Within the action button method I change the String Array of the attribute columnsOrder but the columns of the data table is rendered in the old order.
> I have appended a test project to reproduce it. In this test project I have an a4j ajax button and a simple button, both arent working.
> Best regards
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 11 months
[JBoss JIRA] (RF-12780) Upgrade to Mojarra 2.1.18
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-12780?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč edited comment on RF-12780 at 4/17/13 9:26 AM:
----------------------------------------------------------
[~bleathem], we shouldn't upgrade to 2.1.18 as Pavol pointed out, but we could upgrade to the latest available (2.1.21) and request the update in AS7.
[~ssilvert], is there any plan to upgrade Mojarra in EAP 6.1 / AS 7.x?
was (Author: lfryc):
[~bleathem], we shouldn't upgrade to 2.1.18 as Pavol pointed out, but we could upgrade to 2.1.21 and request the update in AS7.
[~ssilvert], is there any plan to upgrade Mojarra in EAP 6.1 / AS 7.x?
> Upgrade to Mojarra 2.1.18
> -------------------------
>
> Key: RF-12780
> URL: https://issues.jboss.org/browse/RF-12780
> Project: RichFaces
> Issue Type: Component Upgrade
> Security Level: Public(Everyone can see)
> Affects Versions: 5.0.0.Alpha1
> Reporter: Pavol Pitonak
> Assignee: Lukáš Fryč
> Fix For: 4.3.2, 5.0.0.Alpha1
>
> Original Estimate: 30 minutes
> Remaining Estimate: 30 minutes
>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 11 months
[JBoss JIRA] (RF-12780) Upgrade to Mojarra 2.1.18
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-12780?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč commented on RF-12780:
---------------------------------
[~bleathem], we shouldn't upgrade to 2.1.18 as Pavol pointed out, but we could upgrade to 2.1.21 and request the update in AS7.
[~ssilvert], is there any plan to upgrade Mojarra in EAP 6.1 / AS 7.x?
> Upgrade to Mojarra 2.1.18
> -------------------------
>
> Key: RF-12780
> URL: https://issues.jboss.org/browse/RF-12780
> Project: RichFaces
> Issue Type: Component Upgrade
> Security Level: Public(Everyone can see)
> Affects Versions: 5.0.0.Alpha1
> Reporter: Pavol Pitonak
> Assignee: Lukáš Fryč
> Fix For: 4.3.2, 5.0.0.Alpha1
>
> Original Estimate: 30 minutes
> Remaining Estimate: 30 minutes
>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 11 months