| Author |
Message |
|
|
Just enable partialSubmit for the Checkbox and integrate a ValueChangeListener like
Code:
public void checkboxChanged(ValueChangeEvent event) {
Boolean val = (Boolean)event.getNewValue();
if(!val) {
facesMessages.add("Value not Valid.");
}
}
May this helps you.
Greetz
Florian Hell
|
 |
|
|
Well you could integrate a reload function or somethin else and call this by the Java Class itself.
For Example:
JavascriptContext.addJavascriptCall(FacesContext.getCurrentInstance(), "reloadTable();");
Hope this helps.
Greetz
Florian Hell
|
 |
|
|
|
Sorry, wrong posting ;-(
|
 |
|
|
|
What Version of ICEfaces do u use? In my opinion it is fixed since 1.8.2.
|
 |
|
|
|
Seam 3 is everything then ready to work. But if you like challenges it is a good try. With basic JEE 6 (CDI, JSF 2.0) it is no Problem to work with ICEfaces 2.0. Still many bugs but there will hopefully a final release next time.
|
 |
|
|
Thanks for not answering ur users questions. Found the solution in JIRA myself.
http://jira.icefaces.org/browse/ICE-5366
So on, thanks for nothin
|
 |
|
|
|
I had the same Problem by development too, and had found the icefaces.jar in my ear module and in war file. That was the only problem.
|
 |
|
|
Hi there,
I figured out a problem with the icepush. I build a webapp with icepush included and first all seems good, but when I tried the push function nothin happened. In frontend, better said, firebug i just get the message that ice.push is not found.
I configured my web.xml by the following way:
Code:
<welcome-file-list>
<welcome-file>faces/screens/index.xhtml</welcome-file>
</welcome-file-list>
<context-param>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>server</param-value>
</context-param>
<context-param>
<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
<param-value>.xhtml</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
I'm using pure JEE 6 with JBoss AS 6 M4 and actual ICEfaces Beta1.
When I change Faces Servlet to *.jsf and Default Suffix to jsf to, and open the site by jsp redirect everything works fine.
So, may this is a bug, that ICEpush not works with .xhtml mapping or may I make a failure myself.
So on, thank you and nice greetings
Florian
|
 |
|
|
Hi there,
just on Question. When I understand it correctly, the "old" 1.8 ICEfaces Components are not complete implemented in 2.0, just by using the compat and component libs. So when will the "real" ICEfaces 2.0 Components will be released?
Thank you!
|
 |
|
|
Hi,
do you allready know when the ICEfaces 2.0 final release will come?
Thanks
|
 |
|
|
Hi,
have you tried to debug? It looks like your buildAxisChart() method may not run correctly, so the chart component can't build completly.
Greetz
Florian
|
 |
|
|
Hi,
well have to say, i can reproduce it, too.
Problem occurs in FF 3.5.3, no plugins installed.
The browser hangs after sorting, sometimes the first run it works, but on second click it will hang again.
Problem doesn't occurs in other browsers. I think it is not the first problem with FF and IceFaces, right after new FF Releases.
Thanks
|
 |
|
|