Re: el expression parameter of a composite component

2012-06-14 Thread Leonardo Uribe
Hi I have checked the problem and what you need to do is implement your properties into your component class using StateHelper methods, otherwise the properties will not be saved and restored. Take a look at:

Re: el expression parameter of a composite component

2012-06-14 Thread l.pe...@senat.fr
On 14/06/2012 12:40, Leonardo Uribe wrote: Hi I have checked the problem and what you need to do is implement your properties into your component class using StateHelper methods, otherwise the properties will not be saved and restored. Take a look at:

Re: EL expression not evaluated in myfaces/Trinidad 1.2 archetype application on Tomcat 6

2011-03-03 Thread Scott O'Bryan
An example for one. ;) Might be helpful Richard to send us a code fragment or something and let us know what doesn't work. Maybe we can help.. On Mar 3, 2011, at 1:25 AM, Richard Yee richard.k@gmail.com wrote: I generated a basic application from the maven archetype and deployed it to

Re: EL expression not evaluated in myfaces/Trinidad 1.2 archetype application on Tomcat 6

2011-03-03 Thread Richard Yee
Scott, the archetype generates a simple two page application. The first page has a inputText where the use is prompted to enter their name and press a submit button. However, instead of being blank, it shows so #{helloWorldBacking.name} This is the source of the index.jspx page: jsp:root

Re: EL expression not evaluated in myfaces/Trinidad 1.2 archetype application on Tomcat 6

2011-03-03 Thread Richard Yee
Update: I have deployed and run the exact same project on Weblogic 11g and it runs fine. It appears that the EL evaluation problem is with Apache Tomcat 6 and 7 only. Have any of you on the list run a JSF application on Tomcat 6? If so, were there any configuration changes you needed to do to get

Re: EL expression not evaluated in myfaces/Trinidad 1.2 archetype application on Tomcat 6

2011-03-03 Thread Scott O'Bryan
I haven't specifically. I've deployed it on WLS and Jetty. Hey, does anyone know what JSP spec is used by 6? Is it 2.1 or 2.0? I'm wondering if the EL system might need to be updated.. On Mar 3, 2011, at 4:13 PM, Richard Yee richard.k@gmail.com wrote: Update: I have deployed and run the

Re: el expression

2010-02-10 Thread Mark Struberg
/aboutJava/communityprocess/mrel/jsr245/index.html --- Michael Kurz michi.k...@gmx.at schrieb am Mi, 10.2.2010: Von: Michael Kurz michi.k...@gmx.at Betreff: Re: el expression An: users@myfaces.apache.org Datum: Mittwoch, 10. Februar 2010, 9:33 Hi, it is true that it is not possible to use method

RE: el expression

2010-02-10 Thread Krishna K. Pandit
Thanks I am trying. :) -Original Message- From: Martin Monshausen [mailto:martin.monshau...@prodyna.de] Sent: 10 February 2010 15:08 To: MyFaces Discussion Subject: AW: el expression Hi, there are some further tricks which you can use to pass parameters:

Re: el expression

2010-02-10 Thread Mark Struberg
done: http://wiki.apache.org/myfaces/Parameters_In_EL_Functions http://wiki.apache.org/myfaces/HowToEnableEl22 LieGrue, strub --- Matthias Wessendorf mat...@apache.org schrieb am Mi, 10.2.2010: Von: Matthias Wessendorf mat...@apache.org Betreff: Re: el expression An: MyFaces Discussion users

Re: el expression in plain html

2010-02-09 Thread Anton Gavazuk
Hi, you cannot do it actually in such way I see 2 ways to do this: 1) provide your param inside h:inputhidden field and put some javascript onWindow logic which will get this param and provide it to applet code 2) write your own JSF component which will render applet markup Cheers, Anton

RE: el expression in plain html

2010-02-09 Thread Krishna K. Pandit
What do you need exactly? If you want to call a method getParamName() of Bean named myBackingBean then you can use this #{myBackingBean.paramName}. If need any other thing please elaborate. Thanks Krishna Pandit -Original Message- From: baeschtu baeschtu [mailto:baesc...@gmail.com]

Re: el expression in plain html

2010-02-09 Thread mamallan . uthaman
Assuming your requirement is to pass a parameter and its value on page submission, you can use tr:inputHidden id = paramName value=#{myBackingBean.paramValue}/. - Mamallan On 2/9/2010 7:05 PM, Krishna K. Pandit wrote: What do you need exactly? If you want to call a method getParamName() of

Re: EL expression question - how to get them evaluated?

2006-10-11 Thread Torsten Krah
http://mail-archives.apache.org/mod_mbox/myfaces-users/200511.mbox/% [EMAIL PROTECTED] Maybe a solution - but wrapping a simple thing in a bean - much overhead :-| Am Mittwoch, den 11.10.2006, 14:16 +0200 schrieb Torsten Krah: Using jsp for the views, i want to prefix some path, for example

Re: EL expression question - how to get them evaluated?

2006-10-11 Thread Volker Weber
Hi Torsten, you can't use jsf el expression outside jsf tag attributes! link ... is not an jsf tag. but this shoud work inside jsp: link rel=stylesheet href=%= request.getContextPath() + /html/style/mystyle.css% / regards, Volker 2006/10/11, Torsten Krah [EMAIL PROTECTED]: