We are experiencing the same thing except our flowscope variables are null after the page is idle for 10 minutes.
Type: Posts; User: kmsheph; Keyword(s):
We are experiencing the same thing except our flowscope variables are null after the page is idle for 10 minutes.
I am having the same problem but I want to set the type=cleint.
I created a popup in a subflow which works great in Firefox but it won't close in IE 6. Has anyone else experienced this?
I am using JSF, Trinidad, and Facelets.
Solution: Use Spring faces...
Anyone have the trinidad date picker working in facelets?
Do you have column header sorting working for a trinidad table in facelets? I can click on a column header and nothing happens but if I refresh the page (F5) it sorts the data by that column. What...
Did you change your faces-config.xml based on hypersound's reply?
<application>
<default-render-kit-id>org.apache.myfaces.trinidad.core</default-render-kit-id>
</application>
What...
Do you have <tr:document> in your loggedOn.xhtml?
You may need to also add this to your web.xml
<context-param>
<param-name>org.apache.myfaces.trinidad.ALTERNATE_VIEW_HANDLER</param-name>
...
In order for my custom handler to work I had to implement FlowExecutionExceptionHandler as described in the following thread:
http://forum.springframework.org/showthread.php?p=183397#post183397
I am having the same problem with my popup opening in the same window but not in a popup dialogue. I have javascript enabled in my Firefox version 2.0.0.12. I am attempting to do this in a subflow...
Is this what you mean (pieces from web.xml)? I added the last filter-mapping.
<filter>
<filter-name>Trinidad Filter</filter-name>
...
Keith,
After additional debugging, I noticed that when I launch the flow it no longer goes through the filter I have setup in my web.xml. Within this filter code the ThreadLocal variables are set...
What we were able to get working...
My development team has replaced the ADF Faces with Trinidad. We are still using tiles but have moved to JSF 1.2. We are using Webflow and facelets for the new...
We've decided to build a new portion of our app using webflow and leaving the existing portion. Our current app uses JSf 1.1, ADF Faces, and Tiles. Our existing pages are .jsp and our new pages are...
I have my files setup like yours but the flow continues to try to render the page in the flow with .xhtml instead of jsp. I am using JSF 1.1, ADF Faces and tiles.
What version of JSF jars are you using?
Thanks Jeremy.
Until that is fixed, I added a hidden button and I use an onchange javascript function to process the button's clicked event.
I am using this Spring Faces component example in my webflow app and it re-renders a fragment of my page. I am also using Trinidad and skins. After the onchange re-renders the fragment which...
The reason I asked is because I found the following posted by Jeremy:
http://forum.springframework.org/showpost.php?p=183397&postcount=7
Should the FlowExceptionHandler class extend TransitionExecutingFlowExecutionExceptionHandler or implement FlowExecutionExceptionHandler?
I get this same error message but it is thrown from the Spring MVC Dispatcher Servlet in addition to <Attempting to handle [org.springframework.webflow.execution.FlowExecutionException: Exception...
I am using webflow 2.0.3, facelets, and trinidad. I created 2 dropdowns on my edit page and I am using the flow to prepopulate them.
Sample from Flow for editing an operation record (op)
...
I am using trinidad with webflow and when I select the built in date picker icon it opens the current page in the popup instead of the date picker. Should this still work in webflow?
...
Is this jar available in the Spring Framework 2.0.3? At the moment I am unable to download this jar for use with my application.
Is there any other way to get the user role...from the session or...
I am unable to paste my code in so there may be some typos.
CustomProviderAuthentication
public class CustomAuthenticationProvider implements AuthenticationProvider {
@Resource DataSource...