[JBoss JIRA] (RF-12818) Metamer: a4j:jsFunction: causes error status and isn't executed [myFaces]
by Ján Jamrich (JIRA)
Ján Jamrich created RF-12818:
--------------------------------
Summary: Metamer: a4j:jsFunction: causes error status and isn't executed [myFaces]
Key: RF-12818
URL: https://issues.jboss.org/browse/RF-12818
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: core
Affects Versions: 4.3.1
Environment: RichFaces 4.3.1.CR1
Metamer 4.3.1.20130227-CR1
Weld Servlet (Uber Jar) 20120106-1159
Apache Tomcat 7.0.35
Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux
Chrome 23.0.1271.95 @ Linux i686
Reporter: Ján Jamrich
Metamer example with a4j:jsFunction doesn't work. When click on link which should invoke JS Function execution nothing happens and ERROR status appears instead
--
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
11 years, 9 months
[JBoss JIRA] (RF-12817) Metamer: a4j:jsFunction: causes error status and isn't executed [myFaces]
by Ján Jamrich (JIRA)
Ján Jamrich created RF-12817:
--------------------------------
Summary: Metamer: a4j:jsFunction: causes error status and isn't executed [myFaces]
Key: RF-12817
URL: https://issues.jboss.org/browse/RF-12817
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: core
Affects Versions: 4.3.1
Environment: RichFaces 4.3.1.CR1
Metamer 4.3.1.20130227-CR1
Weld Servlet (Uber Jar) 20120106-1159
Apache Tomcat 7.0.35
Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux
Chrome 23.0.1271.95 @ Linux i686
Reporter: Ján Jamrich
Metamer example with a4j:jsFunction doesn't work. When click on link which should invoke JS Function execution nothing happens and ERROR status appears instead
--
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
11 years, 9 months
[JBoss JIRA] (RF-12809) Richfaces-related examples should use -with-richfaces BOM
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12809?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-12809:
-------------------------------
Fix Version/s: 5.0.0.M2
4.2.4
> Richfaces-related examples should use -with-richfaces BOM
> ---------------------------------------------------------
>
> Key: RF-12809
> URL: https://issues.jboss.org/browse/RF-12809
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: examples
> Reporter: Tomas Repel
> Fix For: 4.2.4, 5.0.0.M2
>
>
> There is jboss-javaee-6.0-with-richfaces BOM, I think this should be used instead of richfaces-bom in case that jboss-javaee-6.0 BOM is required as well. This holds for helloworld-rf, kitchensink-rf and richfaces-validation. In case of helloworld-rf it is sufficient the dependencyManagement section to contain only -with-richfaces BOM, the jboss-javaee-6.0 BOM can be removed completely.
--
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
11 years, 9 months
[JBoss JIRA] (RF-12808) rich:tabPanel execute="@none" don't work on switching tabs
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12808?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-12808:
-------------------------------
Fix Version/s: 5-Tracking
> rich:tabPanel execute="@none" don't work on switching tabs
> ----------------------------------------------------------
>
> Key: RF-12808
> URL: https://issues.jboss.org/browse/RF-12808
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-panels-layout-themes
> Affects Versions: 4.3.0.Final
> Environment: Mojarra 2.1.17
> Tomcat 7
> Richfaces 4.3.0.Final and Richfaces 4.3.1-Snapshot
> Reporter: Adelmo Erick santos
> Priority: Minor
> Fix For: 5-Tracking
>
>
> Hi guys, The code Snip below shows my problem. When I switch between tabs the values are submitted even with execute="@none".
> The Page:
> {code}
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
> <html xmlns="http://www.w3.org/1999/xhtml"
> xmlns:h="http://java.sun.com/jsf/html"
> xmlns:f="http://java.sun.com/jsf/core"
> xmlns:rich="http://richfaces.org/rich"
> xmlns:a4j="http://richfaces.org/a4j" >
>
> <h:head>
> </h:head>
> <h:body>
> <h:form>
> <rich:tabPanel switchType="ajax">
> <rich:tab header="Tab1" execute="@none">
> <h:inputText value="#{testTabExecuteNoneMBean.valor1}"/>
> Valor 2: <h:outputText value="#{testTabExecuteNoneMBean.valor2}"/>
> </rich:tab>
> <rich:tab header="Tab2" execute="@none">
> <h:inputText value="#{testTabExecuteNoneMBean.valor2}"/>
> Valor 1: <h:outputText value="#{testTabExecuteNoneMBean.valor1}"/>
> </rich:tab>
> </rich:tabPanel>
> </h:form>
> </h:body>
> </html>
> {code}
> The MBean:
> {code}
> package br.com.becker.test;
> import javax.faces.bean.ManagedBean;
> import javax.faces.bean.SessionScoped;
> @ManagedBean
> @SessionScoped
> public class TestTabExecuteNoneMBean {
> private String valor1;
> private String valor2;
>
> public String getValor1() {
> return valor1;
> }
>
> public void setValor1(String valor1) {
> this.valor1 = valor1;
> }
> public String getValor2() {
> return valor2;
> }
> public void setValor2(String valor2) {
> this.valor2 = valor2;
> }
> }
> {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
11 years, 9 months
[JBoss JIRA] (RF-12807) Datatable evaluate value attribute even if rendered=false when doing ajax calls
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12807?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-12807:
-------------------------------
Labels: ajax commandButton datatable lazy-loaded waiting_on_user (was: ajax commandButton datatable)
> Datatable evaluate value attribute even if rendered=false when doing ajax calls
> -------------------------------------------------------------------------------
>
> Key: RF-12807
> URL: https://issues.jboss.org/browse/RF-12807
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-a4j-core, component-tables
> Affects Versions: 4.3.0.Final
> Environment: Windows, Apache Tomcat 6/7, Mojorra JSF 2.1.18
> Reporter: Kenny Moens
> Labels: ajax, commandButton, datatable, lazy-loaded, waiting_on_user
> Attachments: Bean.java, dataTableBug.jsf
>
>
> The rich:dataTable component evaluates the EL expression inside the value attribute, upon an Ajax call, even if it is part of a non-rendered h:panelGroup.
--
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
11 years, 9 months
[JBoss JIRA] (RF-12807) Datatable evaluate value attribute even if rendered=false when doing ajax calls
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12807?page=com.atlassian.jira.plugin.s... ]
Brian Leathem commented on RF-12807:
------------------------------------
[~kmoens] can you try adding your rendered condition to the datatable itself, and see if the value attribute is still evaluated?
> Datatable evaluate value attribute even if rendered=false when doing ajax calls
> -------------------------------------------------------------------------------
>
> Key: RF-12807
> URL: https://issues.jboss.org/browse/RF-12807
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-a4j-core, component-tables
> Affects Versions: 4.3.0.Final
> Environment: Windows, Apache Tomcat 6/7, Mojorra JSF 2.1.18
> Reporter: Kenny Moens
> Labels: ajax, commandButton, datatable
> Attachments: Bean.java, dataTableBug.jsf
>
>
> The rich:dataTable component evaluates the EL expression inside the value attribute, upon an Ajax call, even if it is part of a non-rendered h:panelGroup.
--
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
11 years, 9 months
[JBoss JIRA] (RF-12806) Remote configuration in the arquillian.xml file should be commented - See JDF-215 for details
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12806?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-12806:
-------------------------------
Fix Version/s: 5.0.0.M2
4.2.4
> Remote configuration in the arquillian.xml file should be commented - See JDF-215 for details
> ---------------------------------------------------------------------------------------------
>
> Key: RF-12806
> URL: https://issues.jboss.org/browse/RF-12806
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: examples
> Reporter: Sande Gilda
> Fix For: 4.2.4, 5.0.0.M2
>
>
> The kitchensink-rf arquillian.xml file contains a configuration for jbossHome
> This should be commented out. All the remote configuration in the arquillian files should look like the following:
> <!-- Example configuration for a remote JBoss Enterprise Application Platform 6 or AS 7 instance -->
> <container qualifier="jboss" default="true">
> <!-- By default, arquillian will use the JBOSS_HOME environment variable. Alternatively, the configuration below can be uncommented. -->
> <!--<configuration> -->
> <!--<property name="jbossHome">/path/to/jboss/as</property> -->
> <!--</configuration> -->
> </container>
> You can copy and paste from the bean-validation arquillian.xml file.
--
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
11 years, 9 months
[JBoss JIRA] (RF-12758) ExtendedDatatable: horizontal scroll bar not work
by Ján Jamrich (JIRA)
[ https://issues.jboss.org/browse/RF-12758?page=com.atlassian.jira.plugin.s... ]
Ján Jamrich commented on RF-12758:
----------------------------------
Revoking my two previous comments: after update, restart and complete cache clear is it working for me.
> ExtendedDatatable: horizontal scroll bar not work
> -------------------------------------------------
>
> Key: RF-12758
> URL: https://issues.jboss.org/browse/RF-12758
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Affects Versions: 4.3.0.M1, 4.3.0.CR1, 4.3.0.Final
> Environment: Myfaces 2.1.10 , WebLogic 10.3.4
> Tomcat 7.0.32, Mojarra 2.1.17
> Reporter: blam lam
> Assignee: Lukáš Fryč
> Labels: regression
> Fix For: 4.3.1
>
>
> When the same xhtml page contains 2 extendedDatatables, the horizontal scroll bar stop function.
> The problem does not appear in 4.2.1. It should a bug after 4.2.3 final.
--
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
11 years, 9 months