Hubert,

Good morning! ( Since I am sending it from Australia.)

I am reading the document on formDef, it is such a nice plugin so why don't
you incorporate it into Struts? It will make project much productive.

Question for you,
 Property type global converters

 Property type global converters are applied to all fields of a certain
type. An example of this would be declaring the Date converter that's
declared to handle Date fields.

    <form-definition>
        <global-converters>
            <global-converter *for="property-type"
                target="java.util.Date"*
                param="MM/dd/yyyy"/>
        </global-converters>
    </form-definition>

How can I convert an input from user to the Date field base on the Locale?
I mean the locale is a varible during the session and conversion can
handle multiple locales.
Sorry for asking this, but in a locale aware web application, the
input is based on Locale

For example, in US, enter 10/12/2005 it will be converted to October
12, 2005 and this is December 10, 2005
if the locale is Australia. How the global converter handles this?

Thanks for your time.

Regards


On 11/3/05, Hubert Rabago <[EMAIL PROTECTED]> wrote:
>
> FormDef works fine with Validator. For the most part they won't even
> be aware of each other. There's no overlap in functionality and they
> won't get in the way of one another.
>
> Hubert
>
> On 11/2/05, Yujun Liang <[EMAIL PROTECTED]> wrote:
> > Hubert, your input is quite valuable. But I just wonder this suppose to
> be
> > handled by Struts itsself,
> >
> > You may also place a bean instance on your form, and use nested property
> > references. For example, you might have a "customer" bean on your
> > ActionForm, and then refer to the property
> > "customer.name <http://customer.name><http://customer.name>"
> > in your presentation page. This would correspond to the methods
> > customer.getName() and customer.setName(String Name) on your customer
> bean.
> > See the Apache Struts Taglib Developer Guides for more about using the
> > nested syntax.
> >
> http://struts.apache.org/struts-core/userGuide/building_controller.html#action_form_classes
> >
> > Do you know whether this BeanDef works with Validator?
> >
> > Thanks.
> >
> > On 11/3/05, Hubert Rabago <[EMAIL PROTECTED]> wrote:
> > >
> > > [ Oh, I missed my cue! :) ]
> > >
> > > If your form bean maps to a business object (and it sounds like it
> > > does since you're using BeanUtils), you can try FormDef:
> > > http://formdef.dev.java.net/
> > >
> > > You won't need to create a separate ActionForm class or manually
> > > define your DynaActionForm, FormDef will configure it for you. You
> > > can also specify how you want your fields formatted, including dates
> > > and numbers, and use FormDef's conversion methods in place of
> > > BeanUtils.
> > >
> > > Hubert
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
Yujun Liang
[EMAIL PROTECTED]

Reply via email to