RE: valueChangeListener + JSF lifecycle

2009-03-05 Thread Madhav Bhargava
Madhav Bhargava schrieb: Hi All, I was under the impression that Value change listeners will be called only when there is no validation exception on the page. However on my page if there is a validation failure and a message is displayed to the user. Now if the user changes a value say

Re: Tomahawk - Compatible version for MyFaces 1.2.5

2009-03-05 Thread andi303
Thanks for your help. I've managed to get MyFaces 1.2.5 working together with Tomahawk12-1.1.8, Trinidad 1.2.11 and RichFaces 3.3.0. Most of the pages are looking good, however, i still have one problem: Some of the links do not work correctly, but i can't see any difference. If i click on some

Re: Tomahawk - Compatible version for MyFaces 1.2.5

2009-03-05 Thread Simon Kitching
Hmm. I presume you are using server-side state-saving here. Are you using multiple browser windows at the same time? Myfaces keeps a cache of the last N views in the session. Therefore if you perform N+1 submits using one window, then try to use the other window you will get this problem.

Check if anything has been changed on the form

2009-03-05 Thread Madhav Bhargava
Hi All, We are trying to fine tune the DAO layer where we are using Hibernate as our ORM. Since we have too many detached objects, every time we go and save which is quite often (because of implicit save) too many queries get fired and the application responds slowly. This happens even if

Re: Check if anything has been changed on the form

2009-03-05 Thread Simon Kitching
Madhav Bhargava schrieb: Hi All, We are trying to fine tune the DAO layer where we are using Hibernate as our ORM. Since we have too many detached objects, every time we go and save which is quite often (because of implicit save) too many queries get fired and the application responds

Orchestra Core 1.3.1 Released

2009-03-05 Thread Simon Kitching
The Apache MyFaces Orchestra team is pleased to announce the release of Apache MyFaces Orchestra Core 1.3.1 This is a bugfix release that fixes a small number of issues with release 1.3. There is no need to upgrade if you are not experiencing any of the issues listed in the release notes. Get a

RE: Orchestra Core 1.3.1 Released

2009-03-05 Thread Mario Ivankovits
YAH ! :-) -Original Message- From: Simon Kitching [mailto:skitch...@apache.org] Sent: Thursday, March 05, 2009 3:44 PM To: MyFaces Discussion Subject: Orchestra Core 1.3.1 Released The Apache MyFaces Orchestra team is pleased to announce the release of Apache MyFaces

Re: How to access session scope attributes via JSF EL

2009-03-05 Thread Andrew Robinson
Unless you set #{sessionScope.someBooleanProperty} to true it will return null, and null is the same as false in terms of the disabled attribute. -Andrew On Wed, Mar 4, 2009 at 11:54 PM, Madhav Bhargava madhav_bharg...@infosys.com wrote: Hi All, In a JSP I need to disable a component