I'm building a simple POC to experiment with Faces Flow.
page 1: displays a list of companies. The user selects company A then goes to page 2.
page 2: on the selected company page, the user clicks a commandLink to start a wizard to create a new…
My Faces Flow has several nodes and it starts when a user enters the first node and finishes after the exit node is called. So far so good...
In my application a user has, at any point in the flow, the chance to navigate to another page via a…
My environment:
JSF 2.3, Mojarra 2.3.9.payara-p2
PrimeFaces 7.0
Payara 5.192
OmniFaces 3.3
Project Java EE 8 Maven
NetBeans 11.1
I have created a Faces flow:
folder "flotTransfer" containing only 2 files (for the moment) flotTransfert-flow.xml and…
I created a simple flow in JSF but I can't exit at the 2. page or 3. page.
I use @FlowDefinition to specify start page and end/return page.
Error message:
Unable to find matching navigation case with from-view-id '/flowname/step3.xhtml' for action…
Just started doing my first steps with FacesFlow with Glassfish 4.1 (i.e. using Mojarra) and when invoking my flow I get an error named
[SEVERE] [] [javax.enterprise.resource.webcontainer.jsf.application] ... Error Rendering…
Does anyone know if the Faces Flow feature of JSF 2.0 is supported in Eclipse or in IntelliJ?
I'm searching for some plugin to get autocompletion for EL-expressions (i.e. Beans, sessionScope-, flowScope-variables) and Tags in faces-config xml-files…
I began to learn JBoss today and i'm having some problems.
When I run the project, gave this error:
I am using JBoss, Primefaces and JSF. IDE: Eclipse
16:38:39,268 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting…
Hi i would go through steps of flow in backing bean using a method:
transition(FacesContext context, Flow sourceFlow, Flow targetFlow, FlowCallNode outboundCallNode, String toViewId);
of
javax.faces.flow.FlowHandler
or some other way
for…
In normal way to enter to flow or go from some page to next page in flow we use
or
But how is it possible to enter to flow or go to the next page in flow (if we currently are in flow) from backing bean?
I try…
I'm exploring the Faces Flow feature in JSF 2.2 and I'm getting the following error Target Unreachable, identifier 'flowScope' resolved to null when I run the tutorial in this page: http://www.mastertheboss.com/javaee/jsf/faces-flow-tutorial
The…
I try to pass a parameter (or even an object) to a faces flow. But all articles I found, they are passing parameters from one flow to another. I want to pass the parameter from a simple request which is starting the flow.
How can I achieve this?…
I'm introducing a JSF Faces flow into my application. This works, following the oracle documentation. But, only in the root folder.
Is it possible to place the JSF flow folder in a sub folder, else that root?
I can't get this working. That's all…
Is it possible to combine the new JSF 2.2 Faces Flow feature with Ajax?
Use case: There is a wizard embedded in a panel on a page. As the user steps through the wizard, only the panel shall be updated, not the entire page.