Re: [OT] PropertyEditor

2006-03-16 Thread Mujahid Ali
Yep thats what I ended up doing. The code (Locale)ExpressionEvaluatorManager.evaluate("locale", expr,Locale.class, this, pageContext) was working against standard.jar (1.0).So just not sure why this is breaking all of a sudden. Thanks, Mujahid Frank W. Zammetti wrote: I'm not sure

Re: [OT] PropertyEditor

2006-03-16 Thread Frank W. Zammetti
cale.class, this, pageContext) > > But I get an error: > > javax.servlet.jsp.JspException: An error occurred while evaluating > custom action attribute "locale" with value "en_US": Attempt to convert > String "en_US&q

[OT] PropertyEditor

2006-03-16 Thread Mujahid Ali
ot;locale" with value "en_US": Attempt to convert String "en_US" to type "java.util.Locale", but there is no PropertyEditor for that type (null) at org.apache.taglibs.standard.lang.jstl.Evaluator.evaluate(Unknown Source) at org.apache.taglibs.standard.l

Re: [Shale] Changing String type to HtmlInputText in Backingbean gives No Propertyeditor error

2005-10-13 Thread gramani
Rahul Akolkar <[EMAIL PROTECTED]> wrote on 10/13/2005 07:40:06 PM: > > I was tempted to change the prefix to JSF, but didn't want to break > the email thread. Much to my surprise I actually know why you say this - my "progress" with JSf/Shale has been so halting that most times i don't know if I

Re: [Shale] Changing String type to HtmlInputText in Backingbean gives No Propertyeditor error

2005-10-13 Thread gramani
Wendy Smoak <[EMAIL PROTECTED]> wrote on 10/13/2005 05:57:58 PM: > From: <[EMAIL PROTECTED]> > > > So my jsp has this: > > >value="#{registration.userName}" /> > > .. > > >binding="#{registration.password}" /> > > > > My backingbe

Re: [Shale] Changing String type to HtmlInputText in Backingbean gives No Propertyeditor error

2005-10-13 Thread Rahul Akolkar
On 10/13/05, Wendy Smoak <[EMAIL PROTECTED]> wrote: > From: <[EMAIL PROTECTED]> > > > So my jsp has this: > > >value="#{registration.userName}" /> > > .. > > >binding="#{registration.password}" /> > > > > My backingbean RegistrationB

Re: [Shale] Changing String type to HtmlInputText in Backingbean gives No Propertyeditor error

2005-10-13 Thread Wendy Smoak
From: <[EMAIL PROTECTED]> So my jsp has this: .. My backingbean RegistrationBean has the following: private HtmlInputText userName = null; private HtmlInputSecret password = null; with appropriate getters and setters. What happens if you use 'binding' instead of 'value' for the userName?

[Shale] Changing String type to HtmlInputText in Backingbean gives No Propertyeditor error

2005-10-13 Thread gramani
ssion '#{registration.userName}' to a new value of type java.lang.String ... Caused by: javax.servlet.jsp.el.ELException: Attempt to convert String "Geeta" to type "javax.faces.component.html.HtmlInputText", but there is no PropertyEditor for that type I suppose I can convince

PropertyEditor

2004-12-07 Thread mohan.radhakrishnan
Hi, I was looking at the source of Spring and found PropertyEditors used extensively. I remember that conversion of String to various datatypes is done using custom converters in Struts. Can anybody comment on this ? Are we going to use PropertyEditors that we can register in the next versi