[JIRA] Created: (APF-1078) JBoss Richfaces integration issue -- clicking add button on users.xhtml does not navigate to userForm.xhtml page.

6 messages Options
Embed this post
Permalink
AppFuse - Issues mailing list

[JIRA] Created: (APF-1078) JBoss Richfaces integration issue -- clicking add button on users.xhtml does not navigate to userForm.xhtml page.

Reply Threaded More More options
Print post
Permalink
JBoss Richfaces integration issue -- clicking add  button on users.xhtml does not navigate to userForm.xhtml page.
------------------------------------------------------------------------------------------------------------------

                 Key: APF-1078
                 URL: http://issues.appfuse.org/browse/APF-1078
             Project: AppFuse
          Issue Type: Bug
          Components: Web - JSF
    Affects Versions: 2.0.2
            Reporter: Irshad A. Buchh
            Assignee: Matt Raible



1. Create JSF basic project.
2. Run appfuse:full-source.
3. Change pom.xml to add JBoss Richfaces 3.2
4. Run mvn jetty:run-war

The are no startup errors as such, but when u click add button to add more users, it doesn't go to the userForm.xhtml page as it should. The richfaces examples are working fine.

--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.appfuse.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]

AppFuse - Issues mailing list

[JIRA] Updated: (APF-1078) JBoss Richfaces integration issue -- clicking add button on users.xhtml does not navigate to userForm.xhtml page.

Reply Threaded More More options
Print post
Permalink

     [ http://issues.appfuse.org/browse/APF-1078?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matt Raible updated APF-1078:
-----------------------------

    Fix Version/s: 2.1

> JBoss Richfaces integration issue -- clicking add  button on users.xhtml does not navigate to userForm.xhtml page.
> ------------------------------------------------------------------------------------------------------------------
>
>                 Key: APF-1078
>                 URL: http://issues.appfuse.org/browse/APF-1078
>             Project: AppFuse
>          Issue Type: Bug
>          Components: Web - JSF
>    Affects Versions: 2.0.2
>            Reporter: Irshad A. Buchh
>            Assignee: Matt Raible
>             Fix For: 2.1
>
>
> 1. Create JSF basic project.
> 2. Run appfuse:full-source.
> 3. Change pom.xml to add JBoss Richfaces 3.2
> 4. Run mvn jetty:run-war
> The are no startup errors as such, but when u click add button to add more users, it doesn't go to the userForm.xhtml page as it should. The richfaces examples are working fine.

--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.appfuse.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]

AppFuse - Issues mailing list

[JIRA] Commented: (APF-1078) JBoss Richfaces integration issue -- clicking add button on users.xhtml does not navigate to userForm.xhtml page.

Reply Threaded More More options
Print post
Permalink
In reply to this post by AppFuse - Issues mailing list

    [ http://issues.appfuse.org/browse/APF-1078?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12502 ]

Matt Raible commented on APF-1078:
----------------------------------

Can you please include the dependency XML for RichFaces as well as any custom repositories that need to be added.

> JBoss Richfaces integration issue -- clicking add  button on users.xhtml does not navigate to userForm.xhtml page.
> ------------------------------------------------------------------------------------------------------------------
>
>                 Key: APF-1078
>                 URL: http://issues.appfuse.org/browse/APF-1078
>             Project: AppFuse
>          Issue Type: Bug
>          Components: Web - JSF
>    Affects Versions: 2.0.2
>            Reporter: Irshad A. Buchh
>            Assignee: Matt Raible
>             Fix For: 2.1
>
>
> 1. Create JSF basic project.
> 2. Run appfuse:full-source.
> 3. Change pom.xml to add JBoss Richfaces 3.2
> 4. Run mvn jetty:run-war
> The are no startup errors as such, but when u click add button to add more users, it doesn't go to the userForm.xhtml page as it should. The richfaces examples are working fine.

--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.appfuse.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]

AppFuse - Issues mailing list

[JIRA] Commented: (APF-1078) JBoss Richfaces integration issue -- clicking add button on users.xhtml does not navigate to userForm.xhtml page.

Reply Threaded More More options
Print post
Permalink
In reply to this post by AppFuse - Issues mailing list

    [ http://issues.appfuse.org/browse/APF-1078?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12503 ]

Irshad A. Buchh commented on APF-1078:
--------------------------------------

Hi Matt:

1. Repository  to be added:

        <repository>
            <id>JBoss Richfaces</id>
            <url>http://repository.jboss.org/maven2</url>
        </repository>

2. Comment out the old ajax4jf:

<!--dependency>
            <groupId>net.java.dev.ajax4jsf</groupId>
            <artifactId>ajax4jsf</artifactId>
            <version>${ajax4jsf.version}</version>
        </dependency-->

3. Add RichFaces dependency:

        <dependency>
      <groupId>org.richfaces.framework</groupId>
      <artifactId>richfaces-api</artifactId>
      <version>${richfaces.version}</version>
      <exclusions>
        <exclusion>
          <groupId>javax.faces</groupId>
          <artifactId>jsf-api</artifactId>
        </exclusion>
        <exclusion>
          <groupId>javax.faces</groupId>
          <artifactId>jsf-impl</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
        <dependency>
      <groupId>org.richfaces.framework</groupId>
      <artifactId>richfaces-impl</artifactId>
      <version>${richfaces.version}</version>
      <exclusions>
        <exclusion>
          <groupId>javax.faces</groupId>
          <artifactId>jsf-api</artifactId>
        </exclusion>
        <exclusion>
          <groupId>javax.faces</groupId>
          <artifactId>jsf-impl</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.richfaces.ui</groupId>
      <artifactId>richfaces-ui</artifactId>
      <version>${richfaces.version}</version>
      <exclusions>
        <exclusion>
          <groupId>javax.faces</groupId>
          <artifactId>jsf-api</artifactId>
        </exclusion>
        <exclusion>
          <groupId>javax.faces</groupId>
          <artifactId>jsf-impl</artifactId>
        </exclusion>
      </exclusions>
    </dependency>

4. Add the version at the bottom of pom.xml:

<richfaces.version>3.2.0.SR1</richfaces.version>


> JBoss Richfaces integration issue -- clicking add  button on users.xhtml does not navigate to userForm.xhtml page.
> ------------------------------------------------------------------------------------------------------------------
>
>                 Key: APF-1078
>                 URL: http://issues.appfuse.org/browse/APF-1078
>             Project: AppFuse
>          Issue Type: Bug
>          Components: Web - JSF
>    Affects Versions: 2.0.2
>            Reporter: Irshad A. Buchh
>            Assignee: Matt Raible
>             Fix For: 2.1
>
>
> 1. Create JSF basic project.
> 2. Run appfuse:full-source.
> 3. Change pom.xml to add JBoss Richfaces 3.2
> 4. Run mvn jetty:run-war
> The are no startup errors as such, but when u click add button to add more users, it doesn't go to the userForm.xhtml page as it should. The richfaces examples are working fine.

--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.appfuse.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]

AppFuse - Issues mailing list

[JIRA] Commented: (APF-1078) JBoss Richfaces integration issue -- clicking add button on users.xhtml does not navigate to userForm.xhtml page.

Reply Threaded More More options
Print post
Permalink
In reply to this post by AppFuse - Issues mailing list

    [ http://issues.appfuse.org/browse/APF-1078?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12559 ]

Timur Jamakeev commented on APF-1078:
-------------------------------------

To solve this bag you should change /common/tableFooter.xhtml adding <ui:composition> tag.

There is a full version of this file:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:c="http://java.sun.com/jstl/core"
      xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
      xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:t="http://myfaces.apache.org/tomahawk">
 <ui:composition>
<h:panelGrid columns="1" styleClass="scrollerTable" columnClasses="standardTable_ColumnCentered">
    <t:dataScroller id="scroll" for="#{tableName}" fastStep="10"
        pageCountVar="pageCount" pageIndexVar="pageIndex" immediate="false"
        styleClass="scroller" paginator="false" paginatorMaxPages="9"
        paginatorTableClass="paginator">
        <f:facet name="first" >
            <t:graphicImage url="/images/arrow-first.gif"/>
        </f:facet>
        <f:facet name="last">
            <t:graphicImage url="/images/arrow-last.gif"/>
        </f:facet>
        <f:facet name="previous">
            <t:graphicImage url="/images/arrow-previous.gif"/>
        </f:facet>
        <f:facet name="next">
            <t:graphicImage url="/images/arrow-next.gif"/>
        </f:facet>
        <f:facet name="fastforward">
            <t:graphicImage url="/images/arrow-ff.gif"/>
        </f:facet>
        <f:facet name="fastrewind">
            <t:graphicImage url="/images/arrow-fr.gif"/>
        </f:facet>
    </t:dataScroller>
</h:panelGrid>
</ui:composition>
</html>
 


> JBoss Richfaces integration issue -- clicking add  button on users.xhtml does not navigate to userForm.xhtml page.
> ------------------------------------------------------------------------------------------------------------------
>
>                 Key: APF-1078
>                 URL: http://issues.appfuse.org/browse/APF-1078
>             Project: AppFuse
>          Issue Type: Bug
>          Components: Web - JSF
>    Affects Versions: 2.0.2
>            Reporter: Irshad A. Buchh
>            Assignee: Matt Raible
>             Fix For: 2.1
>
>
> 1. Create JSF basic project.
> 2. Run appfuse:full-source.
> 3. Change pom.xml to add JBoss Richfaces 3.2
> 4. Run mvn jetty:run-war
> The are no startup errors as such, but when u click add button to add more users, it doesn't go to the userForm.xhtml page as it should. The richfaces examples are working fine.

--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.appfuse.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]

AppFuse - Issues mailing list

[JIRA] Updated: (APF-1078) JBoss Richfaces integration issue -- clicking add button on users.xhtml does not navigate to userForm.xhtml page.

Reply Threaded More More options
Print post
Permalink
In reply to this post by AppFuse - Issues mailing list

     [ http://issues.appfuse.org/browse/APF-1078?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matt Raible updated APF-1078:
-----------------------------

    Fix Version/s:     (was: 2.1.0-M1)
                   2.1.0-M2

> JBoss Richfaces integration issue -- clicking add  button on users.xhtml does not navigate to userForm.xhtml page.
> ------------------------------------------------------------------------------------------------------------------
>
>                 Key: APF-1078
>                 URL: http://issues.appfuse.org/browse/APF-1078
>             Project: AppFuse
>          Issue Type: Bug
>          Components: Web - JSF
>    Affects Versions: 2.0.2
>            Reporter: Irshad A. Buchh
>            Assignee: Matt Raible
>            Priority: Minor
>             Fix For: 2.1.0-M2
>
>
> 1. Create JSF basic project.
> 2. Run appfuse:full-source.
> 3. Change pom.xml to add JBoss Richfaces 3.2
> 4. Run mvn jetty:run-war
> The are no startup errors as such, but when u click add button to add more users, it doesn't go to the userForm.xhtml page as it should. The richfaces examples are working fine.

--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.appfuse.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]