Re: Standard BeanModel for my own classes

2015-10-13 Thread Thiago H de Paula Figueiredo
On Mon, 12 Oct 2015 06:32:01 -0300, Poggenpohl, Daniel wrote: Hi, Hi! Can I register the bean model in Tapestry so I don't have to set the model myself? Short answer: no. Long answer: no, but Chris' suggestions of contributing your own edition blocks will help you apply the same comp

Re: Standard BeanModel for my own classes

2015-10-12 Thread Chris Poulsen
Take a look at data type analyzers and their corresponding property display/edit blocks to get this working. Jumpstart has an example: http://jumpstart.doublenegative.com.au/jumpstart/examples/lang/propertyeditors -- Chris On Mon, Oct 12, 2015 at 11:32 AM, Poggenpohl, Daniel < daniel.poggenp...

Standard BeanModel for my own classes

2015-10-12 Thread Poggenpohl, Daniel
Hi, I've created some classes that are used rather prominently in my Tapestry 5.3.8 application. The classes have some attributes that are themselves simple string wrappers. So, for example, I have: SomeClass.java -- UidString someUid; [...] And UidString is basically a String