How to pass parameters to an EL function

2011-08-31 Thread hadf
Hi, I try to pass parameters to an EL function. I read this wiki : http://wiki.apache.org/myfaces/Parameters_In_EL_Functions I tried the second solution, that is to say the Map solution. So I implemented a Map and overrided the get() method, but this method is never called, I have a javax.el.M

Re: How to pass parameters to an EL function

2011-08-31 Thread hadf
I use the version 2.0.3 of myfaces. hadf wrote: > > Hi, > > I try to pass parameters to an EL function. > > I read this wiki : > http://wiki.apache.org/myfaces/Parameters_In_EL_Functions > > I tried the second solution, that is to say the Map solution. > > So I implemented a Map and overrid

version info

2011-08-31 Thread Kito Mann
Is there a way to tell programmatically at runtime exactly which version of MyFaces is running? --- Kito D. Mann | twitter: kito99 | Author, JSF in Action Virtua, Inc. | http://www.virtua.com | JSF/Java EE training and consulting http://www.JSFCentral.com - JavaServer Faces FAQ, news, and info | tw

Re: version info

2011-08-31 Thread Bernd Bohmann
For example: FacesContext.class.getPackage().getImplementationVersion() or read the content of META-INF/maven/org.apache.myfaces.core/myfaces-api/pom.properties the property should be version But I don't know from which version it works. Regards Bernd On Wed, Aug 31, 2011 at 6:51 PM, Ki

Re: version info

2011-08-31 Thread Kito Mann
On Wed, Aug 31, 2011 at 4:28 PM, Bernd Bohmann wrote: > For example: > > FacesContext.class.getPackage().getImplementationVersion() > Unfortunately, this returns null... > > or > > read the content of > > META-INF/maven/org.apache.myfaces.core/myfaces-api/pom.properties > the property should be