1
vote
1answer
114 views

Change URL on ajax navigation

I have a JSF application and I want the URL in browser address bar be changed on navigation. When I'm on Home.xhtml and I submit a form, it shows the next page AppHome.xhtml, but the URL in browser ...
0
votes
1answer
105 views

Issues with JSF navigation rules using redirect on HTTPS

I'm having issues when using <redirect/> on navigation rules. My application works on HTTPS and when a navigation rule uses <redirect/> the redirect is done to HTTP, not HTTPS. Is there any way ...
0
votes
0answers
144 views

Value on JSF page doesn't update even if the getter method is correct

On a JSF page (lets say page1) I click a link that triggers a pop up through JavaScript. The pop up appears and the JSF page1 stays in the background. In the pop up I work also work JSF. When I`m ...
0
votes
0answers
36 views

How to navigate to a page in a folder?

I have a problem with navigating to the JSF page when I move it into the folder, for example I have a page called ListOfUsers.xhtml which usually was kept in the root folder (I believe Web Pages ...
1
vote
1answer
61 views

JSF navigating to named anchor

I have a JSF2 form which is not near the top of the page, the form has a named anchor in the heading: <h2><a name="contact_form">Contact Us</a></h2> The form consists of ...
0
votes
1answer
86 views

JSF Ajax Navigation timeout

I'm using a selectonemenu combined with ajax to navigate. JSF code <p:selectOneMenu value="#{navigator.outcome}"> <f:selectItem itemLabel="Select page..." /> ...
0
votes
1answer
30 views

redirection after some action with commandButton

I have a command button: <h:commandButton value="button" action="#{bean.button}" /> I need to perform a redirection after the action ends. What I do is to return a string with the page name. ...
0
votes
1answer
206 views

JSF jumping to anchor right away

When a JSF commandLink is clicked, the scrollposition of the new page will be 0 - which is fine. I noticed a strange behaviour with one of my jsf pages - but its acuallty quite hard to explain: ...
0
votes
1answer
62 views

Navigate between Facelets and JSP pages

Is it possible to navigate between Facelets and JSP pages? For example: <h:commandLink ... action="goToJsp" /> And after <h:commandButton .. action="returnToFacelets" /> Is there ...
0
votes
0answers
244 views

“No navigation case match for viewId /empForm.xhtml, action #{backingBean.submitForm} and outcome” error

When I click on the command button in a form, whose action is listened by a backing bean, I am getting the desired output i.e the text I wanted to display + which is pre-appended with this message: ...
0
votes
1answer
229 views

Dynamic navigation with parameter passing in JSF

I want to pass the "title" parameter in the following listing dynamicaly to another jsf Facelet, depending on the selection of the selectOneMenu. My first approach looks like this: <h:form ...
-1
votes
1answer
65 views

jsf navigation pages showing data table

I'm very new to JSF and Web app. Now I'm developing very basic web app that displays data from database in jsf data table. I'm facing one problem. I have lot of data from database in my List object in ...
0
votes
2answers
167 views

How to invoke JSP Page from JSF

How to invoke jsp page from JSF page Below Code I am trying but unable to redirect to jsp page. Please guide. <f:view> <a4j:keepAlive beanName="homeBB"></a4j:keepAlive> ...
3
votes
1answer
91 views

Can't navigate between JSF pages

I am having trouble navigating between my JSF pages. Most of my navigation happens when you click a command button. The action of the command button returns a string. My log in page is my welcome ...
2
votes
1answer
777 views

Dynamic ajax navigation with <ui:include>

Suppose I want to navigate in my application, and include different facelet pages dynamically. I have a commandLink like this: <h:commandLink value="Link" ...
-1
votes
1answer
116 views

How important are the navigation rules? [closed]

I've been working on JSF 2.1/Primefaces 3.4.1 and I've been having some troubles with my beans, like they were never instantiated but they run some of their functions and then they just stop working, ...
1
vote
2answers
1k views

Redirecting browser back button in jsf 2.0

I am writing an application using Primefaces 3.4.1, Jboss AS 7.1 and MyFaces CODI. The problem that I got is that I am using conversation scope provided by CODI and I need a way to deal with the ...
0
votes
1answer
254 views

custom navigation handler - handleNavigation not invoked by h:link

The handle navigation method handleNavigation(final FacesContext context, final String fromAction, final String outcome) from my custom navigation handler is not invoked by my h:link component? ...
1
vote
2answers
820 views

JSF 2.0 navigation not working properly

I am trying to get started with JSF 2.0. I am trying a basic navigation example and it's not working properly. The file structure is the following: I have configured the mapping in web.xml: ...
0
votes
0answers
178 views

JSF 1.2 redirect OR forward does not work

I have a page which does not show the correct URL in the browser. I thought to redirect the correct url , but it does not work. my code : ...
1
vote
2answers
352 views

Navigation rule not firing

I have a navigation rule that looks like this: <navigation-rule> <display-name>forgotPwd</display-name> <from-view-id>/login/forgotpwd.jsf</from-view-id> ...
0
votes
2answers
240 views

Keep dialog open after non-ajax request

I've got a few JSF pages having a PrimeFaces dialog to create a Person. Because this dialog contains a file upload I don't want to use AJAX. The dialog is to be closed when the Person is created. If ...
0
votes
1answer
118 views

How do you maintain your url after a function is used?

I'm having a problem with my url. First, I have to display the image and the information of the image But I need to click on a button to display my information. This is the link with the image ...
0
votes
0answers
133 views

Page Navigation not working in JSF

I am using Glassfish 3.1.2 and eclipse Indigo, i am making a simple JSF app, but my page navigation is not working, it doesn't give any error/exception but not navigating i have checked other posts ...
1
vote
1answer
169 views

JSF: How to execute some code on every time a navigation rule is executed?

Is there any way I can execute some code whenever a navigation rule is executed. Basically what I am trying to do is to have a JourneyTracker bean which will hold the current state of the journey ...
0
votes
2answers
284 views

JSF redirect from page to page

I've a problem with JSF 1.1 (dinosaur, I know) So there are two pages - index.jsp and test.jsp I want to be redirected from index.jsp to test.jsp after clicking "Create" button But nothing ...
1
vote
1answer
1k views

JSF - custom NavigationHandler outcome values invalid?

I wrote myself a custom NavigationHandler very similar to following one but just using a stack to save the history: ...
0
votes
0answers
206 views

Navigation redirect of JSF 2.0 not working with spring security 3.1.1

I am using spring security 3.1.1 with JSF 2.0. I have implemented my custom AuthticationProvider and all the stuff works fine except for some of the pages where i have the below navigation rule. ...
0
votes
1answer
175 views

JSFpage navigation fails: backing bean method is not found

I have the following setup: testBean.java with a method public String getResult(), which returns "success" test.xhtml with <h:commandLink action="#{testBean.result}" value="testlink" /> The ...
0
votes
1answer
112 views

Resetting a JSF Backing bean from theme navigation menu in WPS 7.0

I have a JSF Portlet which has user form in the view JSP. The requirement is whenever i click on the theme navigation menu, a new form needs to be displayed to the user. But the problem is whenever i ...
1
vote
2answers
800 views

Redirect not working in JSF2 navigation rule after logout

I want to redirect a user to a start view when he clicks the logout button. The logout is done correctly, and after the start view is requested the user is presented a login page. So far so good, its ...
0
votes
0answers
151 views

How to implement custom navigation handling with pretty faces - unable to pass in required params

using PF 3.3.1, PrettyFaces 3.3.3 and JSF/Mojarra2.1. I have a custom navigation handler to handle "cancel" button on my application pages - the cancel button needs to return to the previous ...
0
votes
1answer
201 views

JSF2 navigation through ajax

I just saw this post before link. I tried to set up a sample project based on this. Just replace the primeface button with a jsf commandButton. See below: template.xhtml <html ...
1
vote
1answer
1k views

Redirection from root (index.html) on JSF RichFaces

Trying to redirect to admin.xhtml page when I access http://localhost:8080/CSPPortal/index.html. The root index.html contains <html><head><meta http-equiv="Refresh" content="0; ...
0
votes
1answer
128 views

not forwarding or redirecting jsf

I have two pages for registration. On one I get the user data into a request scoped bean and on the next one I display the data gathered. On the second page there is a button to redirect the user to ...
0
votes
1answer
365 views

JSF navigation and passing parameters

I'm having some problems with JSF navigation and passing parameters; this is the scenario: Three pages: artists, albums, tracks For each page a bean: ArtistBean, AlbumBean, TrackBean (session ...
1
vote
1answer
159 views

Problems with navigation cases from an embedded JSF 2.0 application

I'm working on a JSF e-form application. This application needs to be embedded in another web site (one written in JSP). The only way I can embed this is through jQuery at the document ready phase. ...
0
votes
1answer
548 views

JSF tag not rendered after navigation

I am actually trying to do a web application using JSF, and I have some issue with the rendering in the web browser. Here is the context : I have an index.xhtml page which displays correctly the ...
0
votes
1answer
787 views

JSF 2.0 Navigation after commandButton

Hello I am building a website using JSF 2.0. I am trying to set up a commandButton so that after i press it it does some stuff with a method then navigates to a page dependent on what is returned ...
0
votes
1answer
153 views

navigation in CDI with listener

Referencing Oracle docs, does h:outputText require a Converter here? Should I be using f:setPropertyActionListener instead of f:actionListener? Clicking id 2564 does show at the end of the logs: ...
0
votes
1answer
853 views

JSF no navigation case matched

I want to navigate from a webpage to another with a Navigation Rule and get the facesmessage : No navigation case match for viewId /content/diagram.xhtml, action null and outcome edit_weekedit My ...
0
votes
1answer
90 views

Links to other pages in JSF

From Core Server Faces I read this: If no mapping from outcome to view ID is given If the outcome doesn't have a file extension, then append the extension of the current view. If the ...
3
votes
2answers
755 views

Cancel button navigation in JSF

I have Cancel button in one of the page. But page can be open from different places, I mean parent page can be vary. Now on Cancel I need to go back to exact that page from where it came. like ...
7
votes
2answers
2k views

Mojarra is not defined. CommandLink not making a request

I am aware of this post and I double checked all the possibilities there. I'm using JSF 2.0 with Mojarra implementation on Glassfish 3. I'm trying to use two simple <h:commandLink> tags to ...
6
votes
1answer
2k views

Difference between returning null and “” from a JSF action

From what I understand, when a JSF action returns "" (empty String) the user stays on the current page but the view is refreshed. However, when the action returns null the user still stays on the ...
1
vote
1answer
374 views

Continuation-Style Navigation with JSF - Return to Previous Page

I'm doing a site which has a "register" link on every page, to allow the user to register at any time. When the user clicks this link they are taken to a registration form and allowed to register. I ...
2
votes
1answer
528 views

How to create links relative to the right context?

I have this composition : <!DOCTYPE html> <ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" ...
4
votes
3answers
3k views

JSF/PrimeFaces selectOneMenu change view-id

I'm using JSF2 and PrimeFaces3. How can I write selectOneMenu that would invoke JSF navigation to redirect user to another page when he change option in menu?
-1
votes
1answer
100 views

JSF quizz application navigation

I created a simple JSF app, that presents a question for the user, and a set of possible answers as radio buttons. When the user chooses the answer and submit, my bean updates the question and ...
4
votes
1answer
1k views

Navigation with Facelets template not working

I'm having some trouble with navigation when using Facelets. I have my master template in /WEB-INF: <h:body> <div id="container"> <div id="header"> ...

1 2