Tagged Questions
0
votes
2answers
60 views
ocpsoft.org PrettyTime: Could not find any registered converter-class
I found this fairly incredible date conversion library for JSF called Pretty Time. I've included the maven coordinates into my pom.xml:
<dependency>
...
0
votes
1answer
36 views
JSPX Make messageDetail messages show in messages area at the top of the page?
I have set a messageDetailNotInRange message inside tr:validateDateTimeRange for my tr:inputDate component. It appears just below the component. It there a way to make it appear (and replace) the ...
0
votes
0answers
143 views
Why doesn't FacesServlet find .xhtml Facelet?
I've created an JSF Project from my Eclipse with JBoss Tools. Now I have the structure:
MyProjectFolder
⌊ WebContent
⌊ WEB-INF
| ⌊ lib
| ⌊ faces-config.xml
| ⌊ web.xml
⌊ META-INF
...
0
votes
1answer
102 views
Myfaces Tomahawk: content inside panelTab
I'm curious what is the right way to have the content (e.g. div) occupy 100% of t:panelTab inside of t:panelTabbedPane. It appears that the content gets rendered within div or span for which there's ...
1
vote
1answer
544 views
How to use MyFaces Trinidad Input Date component?
I have a JSF 2.0 project with some forms, xhtml pages, After adding the MyFaces Trinidad Input Date component and i run the application, when i click the Input Date icon, its non-responsive and ...
0
votes
1answer
121 views
Apache MyFaces JSF2.0 bug: getStateHelper().put doesn't save anything?
MyFaces seems to be ignoring my call to getStateHelper.put() in this component:
public class BFTableComponent extends UINamingContainer {
...
private void setCurrentPageNumber(int ...
1
vote
0answers
243 views
Alternative to a4j:mediaOutput with @Scope(“conversation.access”)
I am using
a4j:mediaOutput in my view and
a bean with @Scope("conversation.access")
i get NullpointerException for my paint-function called from mediaOutput. It seems this two(mediaOutput and ...
1
vote
2answers
373 views
JSF: MyFaces CODI typesafe navigation and f:viewParam
I'm trying out MyFaces CODI with it's wonderful features. A very useful thing is the typesafe navigation. I can specify the outcome of an action method in my controller bean like this:
public ...
1
vote
2answers
2k views
jsf application performance improvement tips
How to improve performance of jsf myfaces based application ?
Some tips that I have collected so far
Trinidad
Set following init parameters to false in web.xml
...
1
vote
1answer
5k views
JSF 2 setup issue in Tomcat 7 (java.lang.InstantiationException: com.sun.faces.application.ServletContextSensitiveSingletonStore)
I have an issue that keeps arising with JSF 2 and Tomcat 7.0.0. When I setup Apache MyFaces 2.0.4 (by putting all the jars in my WEB-INF/lib folder), Tomcat deploys my WAR file successfully.
However, ...