orchestra/datatable/datascroller LazyInitializationException

2009-02-11 Thread Carl Howarth
Hi all, I am having my first look into Orchestra 1.2 in my MyFaces 1.2.3/Facelets, Spring 2.5.6, JPA, Hibernate app and am having difficulties. In a nutshell I have the following: searchparameters.xhtml - users enter various search parameters into a form and hit 'search'. This calls an action

RE: orchestra/datatable/datascroller LazyInitializationException

2009-02-11 Thread Mario Ivankovits
Hi! -Original Message- From: Carl Howarth [mailto:carl.howa...@dlapiper.com] Sent: Wednesday, February 11, 2009 11:56 AM bean name=searchParametersBean class=com.xxx.SearchParametersBean scope=conversation.access property name=serviceBean ref=serviceBean / property

RE: orchestra/datatable/datascroller LazyInitializationException

2009-02-11 Thread Carl Howarth
Hello there, I have removed the savestate but to no avail. I presume I need to be somehow share the conversation between the parameters and results beans but am unsure how to go about it. So in effect I am not passing just one result, I am passing the whole resultset from the parameters page to

Re: orchestra/datatable/datascroller LazyInitializationException

2009-02-11 Thread Simon Kitching
Mario Ivankovits schrieb: Hi! -Original Message- From: Carl Howarth [mailto:carl.howa...@dlapiper.com] Sent: Wednesday, February 11, 2009 11:56 AM bean name=searchParametersBean class=com.xxx.SearchParametersBean scope=conversation.access property name=serviceBean

Re: layout issue with h:panelGrid

2009-02-11 Thread Martyn Hiemstra
You forgot to wrap the select items and such in a t:div Hi, I am not able to layout components uniformly. In the attached screen shot I am not able to remove the space shown in the second and third columns. During run time its visible like the second and third columns are displayed from

Re: layout issue with h:panelGrid

2009-02-11 Thread Martyn Hiemstra
What space you do want to remove? The horizontal or vertical space? Could you be more specific. Hi, I am not able to layout components uniformly. In the attached screen shot I am not able to remove the space shown in the second and third columns. During run time its visible like the

Re: Problem Using Orchestra with Realm after Session-Timeout

2009-02-11 Thread Filip Lyncker
Dear Kito, We are using JSF(RI) and Orchestra.core v1.2 ... so do you have some ideas for me? thanks regards, filip Kito Mann schrieb: Folio, Which version of the reference implementation are you using, and which version of Orchestra? Sent from my iPhone

Re: Problem Using Orchestra with Realm after Session-Timeout

2009-02-11 Thread Simon Kitching
I don't think this is anything to do with Orchestra. This message: WARNUNG: executePhase(RESTORE_VIEW1, org.apache.myfaces.orchestra.lib.jsf. orchestrafacescontextfactor...@108e435) threw exception java.lang.NullPointerException at

RE: Replacing font color with trinidad skinning?

2009-02-11 Thread Felix.Becker
Hi Omar! Thank you, but that did not solve my problem. The table headers are in the right color now, but the color of a panelCaptionGroup is still wrong. It doesn't help me if you send me the selector for changing this, if there are other components which are not affected by this selector.

Re: Replacing font color with trinidad skinning?

2009-02-11 Thread Matthias Wessendorf
trying to send the advice again... af|column::header-text { background-color:#0066FF; color:#FF; } IMO the best is to disable (on development) the CSS comression and than, use firefox to inspect the DOM for the CSS classes/selectors. another option is looking here:

Re: Problem Using Orchestra with Realm after Session-Timeout

2009-02-11 Thread Filip Lyncker
Dear Simon, you're right, im sorry, Im using the version 1.2.03 of RI JSF. Yes I know there is a newer version also from orchestra. But first I tried to understand the problem than just to upgrade the version of my frameworks b/c I allways had a lot other problems than ... let me describe it

Re: [Trinidad] How to get out of Trinidad dialog scope with multiple dialogs

2009-02-11 Thread Richard Yee
For each dialog that is created, returnFromDialog needs to be called. I suggest to only create one dialog and then just chang the view in that dialog for the subsequent ones. This way, you don't have to keep track of the nesting level and just need to call returnFromDialog once to get out.

Re: Problem Using Orchestra with Realm after Session-Timeout

2009-02-11 Thread Simon Kitching
Hi, I presume you're using server-side state-saving. So the browser accesses foo.jsf, and is returned a page containing a special hidden field that is the key of the saved state within the user's http session on the server. Then the user's http session times out. The user clicks a submit

RE: Problem Using Orchestra with Realm after Session-Timeout

2009-02-11 Thread Mario Ivankovits
Hi! What normally happens then is that the JSF implementation will just log an unable to restore view message to its logfile, and simply *render* the specified page rather than doing a postback, just as if the user had done a GET request for the url rather than a POST request. Unhappily JSF

Re: [Trinidad] Page reloads before launching the dialog

2009-02-11 Thread Walter Mourão
Actually the refresh occurs after closing the dialog too... :-( Hints ? Answers ? Thanks in advance, Walter Mourão http://waltermourao.com.br http://arcadian.com.br http://oriens.com.br On Tue, Feb 10, 2009 at 9:27 AM, Walter Mourão walter.mou...@gmail.comwrote: Hi folks, I'm using

Re: [Trinidad] Page reloads before launching the dialog

2009-02-11 Thread Richard Yee
Are you using any custom JavaScript? -R On Wed, Feb 11, 2009 at 10:24 AM, Walter Mourão walter.mou...@gmail.com wrote: Actually the refresh occurs after closing the dialog too... :-( Hints ? Answers ? Thanks in advance, Walter Mourão http://waltermourao.com.br http://arcadian.com.br

regarding my apache jars 1.6

2009-02-11 Thread srinivas
when i have switched myfaces jars from 1.0 to 1.0.6, I am getting this error log java.lang.ClassNotFoundException: org.apache.myfaces.component.html.util.ExtensionsFilter Is there anything I am missing ?   The application works fine with myfaces 1.0 jars. bye srinu Add more friends to

Re: commandbutton action not being invoked if form contains programatically-defined selectitems

2009-02-11 Thread Cedric Hurst
This is a bit of a delayed response, but I've gotten a couple of emails from people with a similar issue so I thought I'd post on update on the issue. Volker was on the right track in suggesting that it was a validation issue. In my case, the values for the SelectItems were based on 15-minute

Re: [Trinidad] Page reloads before launching the dialog

2009-02-11 Thread Walter Mourão
No javascript. Walter Mourão http://waltermourao.com.br http://arcadian.com.br http://oriens.com.br On Wed, Feb 11, 2009 at 5:54 PM, Richard Yee richard.k@gmail.comwrote: Are you using any custom JavaScript? -R On Wed, Feb 11, 2009 at 10:24 AM, Walter Mourão walter.mou...@gmail.com

Re: [Trinidad] Page reloads before launching the dialog

2009-02-11 Thread Richard Yee
Try creating a small test application with a basic page that has a dialog and see if it has the same behavior. This will determine if it is something in your page. -R On Wed, Feb 11, 2009 at 2:07 PM, Walter Mourão walter.mou...@gmail.com wrote: No javascript. Walter Mourão

Re: [Trinidad] Page reloads before launching the dialog

2009-02-11 Thread Gerhard Petracek
hello walter, @demo app: +1 (so you can compare both apps.) i tested the same with trinidad 1.0.9 - no page refresh (with partialSubmit=true). - it doesn't look like a general issue. regards, gerhard 2009/2/12 Richard Yee richard.k@gmail.com Try creating a small test application with a

tomahawk 1.1.8 tabChangeLisener attribute in tabbedPane lost

2009-02-11 Thread Dipl.-Ing. Torsten Liermann
Hi, sorry, I can not speak english.. I migrating from tomahawk 1.1.6 to 1.1.8 and see, that the tabChangeListener attribute is lost after a save / restore. What I'm doing wrong. Are there changes in the configuration of tomahawk (web.xml)? Thanks for a help Torsten

Re: regarding my apache jars 1.6

2009-02-11 Thread Simon Kitching
srinivas schrieb: when i have switched myfaces jars from 1.0 to 1.0.6, I am getting this error log java.lang.ClassNotFoundException: org.apache.myfaces.component.html.util.ExtensionsFilter Is there anything I am missing ? The application works fine with myfaces 1.0 jars. The

I am trying to deploy to Tomcat 5.0.28

2009-02-11 Thread Brenda Krivensky
I have a Netbeans 6.5 Web project and am trying to deploy to a Tomcat 5 server. I have no problems with the latest version of Glassfish and Tomcat 6. I need to deploy to a Tomcat 5 version with my war file. I can get the war file to deploy by copying it into the webapps directory. I

[Trinidad] commandButtons not reacting on first click

2009-02-11 Thread Huettenkofer Michael
Hi all, I am developing an application based on Facelets, MyFaces and Trinidad which I am deploying to a Tomcat servlet container. Some of the commandButtons I am using throughout the application do not always fire their events when they are pressed. It sometimes takes several times of