OmniFaces is a library for JSF 2.x that focusses on utilities that ease everyday tasks.
0
votes
1answer
16 views
UnsupportedOperationException using Ajax.update or getRenderIds().add
I'm trying to refresh a jsf component using java code. First, i try using this :
FacesContext.getCurrentInstance().getPartialViewContext().getRenderIds().add("MyCompId");
but it produce an ...
0
votes
1answer
32 views
placeholder not recognized when using omnifaces
I'm new to JSF. Well, I'm trying to pass attributes like placeholder through jsf with omnifaces. But somehow the attributes are not recognized. Am I missing something?
Omnifaces.jar is in the Java ...
1
vote
1answer
21 views
Omnifaces Html5RenderKit: no input type=“month” support
Omnifaces Html5RenderKit does not support all input-type-attributes like e.g. month or week.
Anybody knows if there's a reason for that? Or an update planned?
0
votes
1answer
33 views
Java.lang.ExceptionInInitializerError when adding omnifaces 1.4.1 to liferay project
I am using JSF 2.0 with liferay and glassfish and primefaces 3.5i've read about omnifaces and its interestingi've added omnifaces 1.4.1 jar file to my liferay project in webinf\liban exception is ...
3
votes
1answer
45 views
Expire data with Omnifaces <o:cache>
I have a large buffer of application scoped content that I want to keep in memory. Using Omnifaces let's do that pretty easily.
However, if I need to expire the cache, there appears to be no method ...
1
vote
1answer
46 views
getBackingBean() in OmniFaces
I'm probably too blind and too new to OmniFaces, and could not find a basic method in the API to retrieve a backing bean instance. Where can I find such a method if there is one? Like this one:
...
2
votes
1answer
22 views
How do I use omnifaces coalesce to turn nulls into a number, for use in ChoiceFormat
I currently have the following JSF:
<p:outputLabel value="#{msg['label.address.province']}"
rendered="#{address.country ne CountryEnum.UNITED_STATES.country}"/>
...
0
votes
0answers
19 views
ValidateOnePer row
I really love your project, It is really amazing!
I have an observation about this scenario which would be great to validate and I think, from my humble perspective, is not covered.
I have a ...
1
vote
1answer
124 views
java.lang.NoClassDefFoundError: Could not initialize class org.omnifaces.config.WebXml
I have added recently added omnifaces 1.4.1 to my pom to use some of the converters.
<dependency>
<groupId>org.omnifaces</groupId>
...
1
vote
1answer
108 views
FullAjaxExceptionHandler does not redirect to error page after invalidated session
I am having issues with the Omnifaces FullAjaxExceptionHandler (http://showcase.omnifaces.org/exceptionhandlers/FullAjaxExceptionHandler). It does not redirect to the specified error page after the ...
2
votes
1answer
71 views
WARNING: Unsupported component-family/renderer-type: org.omnifaces.component.script/javax.faces.Button
I have the following form defined:
<ui:define name="body">
<h:form
id="posForm"
styleClass="well span12">
....
<o:commandScript
...
0
votes
1answer
122 views
Omnifaces EAR deployment issue on glassfish 3.1.2.2
I have a maven enterprise project (skinny) with
omnifaces 1.4.1
glassfish 3.1.2.2
primefaces 3.5
primefaces extensions 0.6.3
myfaces extcdi 1.0.5
When i deploy the ear, the error is:
remote failure: ...
0
votes
0answers
44 views
o:conditionalComment not taken
I have an application in JSF. I have problem with my IE conditionalComments which is like this:
<?xml version="1.0" encoding="UTF-8"?>
<!--<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 ...
0
votes
0answers
131 views
AJAX: OmniFaces FullAjaxExceptionHandler says it will show the error page, but it doesn't
When I get a ViewExpiredException (in development I force this by cleaning Tomcat's work directory) FullAjaxExceptionHandler is not redirecting to the error page after an PrimeFaces' AJAX request. See ...
1
vote
1answer
113 views
JSF2.0 how do you pass a viewParam to a request scoped backing bean while using a commandButton?
I have the following page:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
...
1
vote
1answer
206 views
JSF Error page not shown when ViewExpiredException occurs
I have the following error when view within a page is expired. The message says that the Error page '/home.xhtml' will be shown. but actually nothing is shown, the page remains the same, and it is ...
3
votes
0answers
123 views
OmniFaces ExtensionlessURLS, Different behavior between Mojarra and MyFaces
After uncovering some potential performance issues I was having with Mojarra, I recently switched my application to run on MyFaces 2.1.10 implementation from Mojarra 2.1.7.
I have been using the ...
1
vote
1answer
206 views
FullAjaxExceptionhandler only catches javax.el.ELException or java.lang.Throwable
FullAjacExceptionHandler can only catch javax.el.ELException or java.lang.Throwable. Throwable also takes precedence over javax.el.ELException. I need to explicit catch a particular exception thrown ...
1
vote
1answer
66 views
Why is Omnifaces postInvokeAction listener method called twice
I am new to using omnifaces.
From the little I gathered, the postInvokeAction is a better choice to use when handling objects in flashscope rather than the jsf preRenderView event. But what I noticed ...
1
vote
1answer
191 views
Redirect after JSF Ajax (ViewRoot) update
I'm using omnifaces FullAjaxExceptionHandler to redirect when any exception is fired with ajax request, in my case to caught ViewExpiredException.
I'll try to explain my case:
1) I have the ...
0
votes
0answers
61 views
Redirect to toplevel page with FullAjaxExceptionHandler
for exception handling of my JSF pages I'm using the FullAjaxExceptionHandler (thanks, BalusC ;-) ). The error handling works, but for some reasons I'm not able to redirect to a toplevel. I.e., the ...
1
vote
2answers
239 views
JSF scroll bar at the top of the page
I was wondering how to make the scroll bar of the browser. go to top of page.
I am developing a registration screen that is too big, and it contains some fields that are needed.
It displayed an error ...
5
votes
1answer
262 views
Spring Security/JSF/Hibernate Accidental Session Hijacking on Tomcat?
Something very strange and embarrassing happened to me the other day and I don't have words to describe what happened.
My app runs Spring 3 integrated with JSF 2.1, Hibernate 4, Spring Security all ...
0
votes
0answers
153 views
FullAjaxExceptionHandler with datatable and lazydatamodel
I'm building a search page with primefaces 3.4 and omnifaces 1.3.
Managed bean is SessionScoped.
I have a xhtml page with a:
<p:autoComplete id="searchBox" value="#{searchBean.queryText}"... ...
2
votes
1answer
215 views
OmniFaces:SelectItemsConverter not working with PrimeFaces: PickList
I'm trying to use SelectItemsConverter with PrimeFaces Picklist.
XHTML:
<p:pickList id="plUpdateFirma" value="#{bsvttController.dlmFirma}" var="plFirma"
itemLabel="#{plFirma.schluesselFirma}" ...
3
votes
0answers
152 views
Error pages for exceptions during page rendering
In the backing beans of my JSF application, certain exceptions may be thrown at any time, and I want to react to this by redirecting to an error page. I have included the omnifaces ...
0
votes
1answer
113 views
MyFaces 2.0.4 cannot render h:form tag
I have a simple JSF 2.0 xhtml page that will not render when I insert an h:form tag. I can use a normal tag and things render just fine.
Here's my specs:
- Java 1.6
- WebSphere 8.0.0.5 & its ...
1
vote
1answer
111 views
Use Omnifaces Validator in a composition component with the “for” tag
I want to use the o:validator tag from the omnifaces library for a composition component:
<ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html"
...
2
votes
1answer
392 views
Handling ViewExpiredException (JSF 2.1, Seam2 , Primefaces 3.4.1, Omnifaces 1.3)
I am having terrible problems trying to handle ViewexpiredException correctly using the frameworks JSF 2.1, Seam 2.3, Primefaces 3.4.1, Omnifaces 1.3.
Here you can see a full explanation of my ...
2
votes
1answer
92 views
Alternative to Omnifaces Tree for JSF 1.1
I need to render a hierarchical data structure on my JSF page. I need to control the HTML output, because some of the nodes need a checkbox and most nodes need some additional icons etc to display ...
1
vote
2answers
138 views
Validate a group of fields as required when at least one of them is filled
In a basic registration screen (with button register records the screen) there are two panels:
Data panel:
Address panel:
I can register by completing only the Data panel. It is not necessary ...
1
vote
2answers
132 views
How to invoke p:commandButton in the error page shown by FullAjaxExceptionHandler?
I am using OmniFaces FullAjaxExceptionHandler and PrimeFaces. I added a command button in the errorPage.xhtml as follows:
<h:form>
<p:commandButton id="logoutButtonId" value="Redirect" ...
1
vote
0answers
63 views
Is it possible to create editable datatable using Omnifaces #{of:setToList}
I am trying to create a editable datatable whose values are java.util.Set. But in JSF-2.0 and 2.1 this is not possible as explained in Displaying objects from a Set collection in Datatable JSF does ...
1
vote
2answers
132 views
JSF ViewParams not being passed
I am finding view params will not be passed from a page where the backing bean is different on the target page. How can I pass the product param from test1.xhtml to test2.xhtml?
test.xhtml
...
1
vote
1answer
269 views
java.lang.AbstractMethodError: org.apache.xerces.dom.ElementImpl.getTextContent()Ljava/lang/String
I'm using Omnifaces 1.3 + Primefaces 3.4.1 + Jboss 7.1.1 Final but I just can't redirect the exceptions with the FullAjaxExceptionHandler configured on my web.xml when they come by ajax request. ...
1
vote
1answer
93 views
Why is OmniFaces Ajax utility's oncomplete() not working when invoked by preRenderView event?
My preRenderView event invokes OmniFaces Ajax utility's oncomplete() method to execute javascript on the client. I just tested this, and the javascript is not executed on the client.
My f:event is ...
1
vote
1answer
95 views
PDF file download in Firefox results in “Error: not well-formed Line: 1, Column: 9 Source Code: %PDF-1.4”
I have a JSF web project where I generate output in Jasper Reports 5.0.
I am trying to send the output back to the browser. I have used both Omnifaces (1.2) and Primefaces 3.4.2 (showcase) examples.
...
1
vote
1answer
660 views
Primefaces 3.5 + OmniFaces 1.3 SelectItemsIndexConverter issue with SelectOneMenu
I'm using Primefaces 3.5 5th December 2012 SNAPSHOT, with Mojarra 2.1.14 and Tomcat 7.0.33.
When using the in-cell editing mode (not in-row) for POJO objects with a model/entity class that are ...
0
votes
1answer
1k views
Primefaces picklist target and source values do not change
My primefaces pickList source and target values do not change, I have followed the example in primefaces showcase
and also looked at several posts here but still am not able to solve the problem. I am ...
0
votes
2answers
263 views
primefaces p:outputLabel not set label for UIInput use its value when it is a child of Omnifaces tree
p:outputLabel will set label for related UIInput, But when it is a child of Omnifaces o:tree It is not work. The validate error message still use clientId.
Omnifaces outputLabel can set label for ...
1
vote
1answer
69 views
Initial state is invalid when Primefaces components under Omnifaces tree
I use omnifaces tree to edit some recursive data structure.But the primefaces component's state is invalid (has red border) when I open the page.
versions:
omnifaces-1.3-SNAPSHOT-20121121.jar
...
3
votes
1answer
938 views
PrimeFaces editable datatable with custom validator and Omnifaces
I recently brought the OmniFaces library into my project to make use of its Ajax utility, but since having done that, my PrimeFaces editable datatable is now ignoring validation errors.
I currently ...
1
vote
0answers
304 views
Omnifaces 1.3 + Primefaces 3.4 + session timeout
I ran into the following problem. I have a web application which uses JSF (PrimeFaces 3.4) and Glassfish. I am trying to redirect the user to the login page, when a session timeout occurs. Now I have ...
1
vote
2answers
70 views
Omnifaces: Using CombinedResourceHandler with Richfaces
when using CombinedResourceHandler in a Richfaces application only stylesheets and user defiend scripts are combined. The standard JavaScript resource and all Richfaces specific resources remain as ...
0
votes
1answer
92 views
Class not found exception in Omnifaces
I get this error when I try to use the omnifaces
Caused by: java.lang.ClassNotFoundException: org.omnifaces.exceptionhandler.FullAjaxExceptionHandlerFactory
at ...
1
vote
1answer
98 views
Omnifaces ValidateEqual Does not perform validation
I am trying out the Omnifaces validators especially the validateEqual and so I created a test page such as this.
<p:messages autoUpdate="true" showDetail="false" />
<h:form ...
2
votes
1answer
133 views
Bug report form on error page
I have a JSF web application in JBoss 7.1 and Richfaces 4.1. I tried to configure a custom error page in web.xml but came across the problem, that this does not work for AJAX requests. As a solution I ...
1
vote
1answer
127 views
JSF - Trigerring methods on submit
I am using composite, tag or custom components in my new JSF 2.1 powered application.
I am still new to JSF and still often ignores the right (or at least recommanded) way to proceed with this ...
1
vote
1answer
895 views
Primefaces SelectOneMenu with Objects from List flips back on selection
The setter method of selectedRestaurant is called but the menu just flips back and doesn't render the <h:outputText>. The Menu has content, so the List used in <f:selectItems> is not ...
1
vote
1answer
254 views
OmniFaces JAR not allowing my app to start or run in Tomcat 7.0.32
I am attempting to migrate from Glassfish 3.1.2.2 to Tomcat 7.0.32, since everyone says that Atmosphere (PrimeFaces Push) works perfectly with Tomcat, while it does not work with Glassfish.
I already ...

