| Author |
Message |
|
|
Well your action method have to return the navigation string too, so your method could return e.g.
"home.xhtml?faces-redirect=true" or "home?faces-redirect=true" or whatever u need.
|
 |
|
|
Obviuosly a classpath error.
Seems like you have el.jar / jsf.jar in your war / ear with another version in your app server. Remove them from war / ear and all will be fine.
|
 |
|
|
I don't really know but u may have to include ur own stylesheet file for ie specific styles. May you could learn a little bit about the basics...
E.g.
<!--[if IE]>
<link href="ie.css" rel="stylesheet" type="text/css" />
<![endif]-->
|
 |
|
|
May you have the css styles in the wrong order in the head section. Ur custom styles should be icnluded after the ice styles.
You can mark your styles with !important so the browser knows that it should take them instead of others.
Code:
.iceSelInpDateInput{
width: 75px !important;
margin: 2px !important;
}
|
 |
|
|
ICEfaces 2.0 dosn't make all request by ajax, just with icecore:singlesubmit activatet in page.
The bahaviour of not changing the url is caused ba faces-redirect
U can put the parameter ?faces-redirect=true
So your logout method could return "logout?faces-redirect=true"
|
 |
|
|
Well hard to say, have u tried to use h:commandButton instead?
Otherwise please send us your loginAction Class, too.
|
 |
|
|
Well, just overwrite the special stylesheets, you could inspect them with firebug, so you'll get the classes and put them into your own css file, but don't forget to include it ;-)
Also there is information about styleClass also in the tld http://www.icefaces.org/docs/v1_8_2/tld/index.html
You can overwrite the headerClass, footerClass etc.
Hoe this helps.
|
 |
|
|
|
Post some code?
|
 |
|
|
Code:
public void changeCountry(ValueChangeEvent event){
Date newValue = (Date)event.getNewValue();
DateoldValue = (Date)event.getOldValue();
}
Should normally work.
|
 |
|
|
Sounds like u forgot to include:
<link href="./xmlhttp/css/xp/xp.css" rel="stylesheet" type="text/css" />
in your <h:head> section.
|
 |
|
|
|
Are we talkin about ICEfaces 1.8 or 2.0?
|
 |
|
|
|
So, i would say easiest way would be triggering all db changes into a seperate table, catching them by your java app and handling the messages by ICEpush.
|
 |
|
|
|
Oracle DB?
|
 |
|
|
Have you tried raising up to a really much higher level?
Default is round about 10 minutes, you can raise it without problems up to two weeks.
Code:
<context-param>
<param-name>com.sun.faces.defaultResourceMaxAge</param-name>
<param-value>604800</param-value>
</context-param>
|
 |
|
|
First, in IceFaces 2 you should use icecore:singleSubmit instead of partialSubmit.
May this will fix ur problem.
Otherwise could you please post some code? Especially from the valueChangeListener?
Thanks
Florian
|
 |
|
|