Re: [TRINIDAD] Placing tr:inputText inside trh:tableLayout sometimes doesn't render the input element in the HTML

2011-02-23 Thread Cédric Durmont
you could always add a bogus setter... Not very clean, but you could use a getter/setter pair in a bean, the setter would do nothing, whereas the getter would grab the value from your business object u Regards, Cedric 2011/2/23 A. Nieves daraii.t...@gmail.com: I was mistaken. They are displayed

Fwd: [Trinidad] problem when deploy trinidad-demo-1.2.14.war or trinidad-blank-1.2.14.war on Tomcat 6

2011-02-23 Thread Fahmi Hachicha
I retrieve the attached file because the deamon refuse the message with a file with about 8 Mo. Fahmi -- Forwarded message -- From: Fahmi Hachicha fahmi.hachi...@gmail.com Date: 2011/2/23 Subject: Re: [Trinidad] problem when deploy trinidad-demo-1.2.14.war or

Re: NullPointerException with OSGi Bundle

2011-02-23 Thread Jakob Korherr
Hi Clovis, Great to hear that! Thanks for trying. I will commit the patch on MYFACES-3051 and resolve MYFACES-3044. Regards, Jakob 2011/2/23 clovis.seragio...@raibau.at: I replaced my 2.0.3 bundle with the patch (2.0.5-SNAPSHOT-3051) and got no NullPointerException. So, assuming that you

Re: StackOverflowError in Application.getExpressionFactory

2011-02-23 Thread Jakob Korherr
Hi, This happens if you're using a custom pre JSF-1.2 Application implementation. Every custom application implementation should extend ApplicationWrapper or implement every method. Regards, Jakob 2011/2/7 Mike Calmus m...@calmus.org: I am getting a StackOverflowError with my app. I can't

Re: Why is tomahawk-sandbox-1.1.9.jar not in maven repo?

2011-02-23 Thread Rodrigo Zenteno
Sebastian, Dame tú correo directo. Atte. Rodrigo 2011/2/22 Sebastian Gomez sage...@gmail.com Any ideas anyone? If it's not deployed into the official maven repository I will probably have to use 1.1.6 which would be quite a step back. Hope someone can help. On Mon, Feb 21, 2011 at 9:34 AM,

Re: StackOverflowError in Application.getExpressionFactory

2011-02-23 Thread Mike Calmus
Turns out this problem was occurring when we were using Spring WebFlow 2.1.0. When we use 2.0.7 or 2.2.1 it doesn't happen. On Wed, Feb 23, 2011 at 7:43 AM, Jakob Korherr jakob.korh...@gmail.comwrote: Hi, This happens if you're using a custom pre JSF-1.2 Application implementation. Every

Re: [TRINIDAD] Placing tr:inputText inside trh:tableLayout sometimes doesn't render the input element in the HTML

2011-02-23 Thread A. Nieves
Thank you for the suggestion I did that for one of the fields (the one in the example) but many of the others are of the type: tr:inputText id=order_id disabled=true columns=10 simple=true value=#{empty o.id ? 'Pending' : o.id} / That is, they have conditional expressions in the value