Re: Missing ValueEncoder for java.util.Calendar

2011-08-11 Thread Eric Torti
atted according to pt_BR the month will be in place of the day regarding the default behavior as localized by en_US. Is it the best approach to implement the value encoder to address Strings as en_US formatted? Thanks again, Eric Torti On Thu, Aug 11, 2011 at 2:28 PM, Thiago H. de Paula Fig

Re: Missing ValueEncoder for java.util.Calendar

2011-08-11 Thread Eric Torti
do < thiag...@gmail.com> wrote: > On Thu, 11 Aug 2011 11:50:20 -0300, Eric Torti > wrote: > > Hello, guys! >> > > Hi! > > > Do I have to provide a value encoder for Calendar, or am I missing >> something on the configuration of the project? I&#x

Missing ValueEncoder for java.util.Calendar

2011-08-11 Thread Eric Torti
e project? I've searched around the docs but didn't quite get it. I could provide source if you find it to be appropriate. Thanks, Eric Torti

Reusing form from CreateSomeBean on EditSomeBean

2011-08-10 Thread Eric Torti
points out how this can be accomplished? Thanks, Eric Torti

Re: t:grid showing pager but not data

2011-08-09 Thread Eric Torti
Sorry, noob`s mistake :] I was missing the getters on the model that represents the rows on the grid. Thanks. Eric Torti On Tue, Aug 9, 2011 at 6:49 PM, Eric Torti wrote: > Hello, guys, > > I`m using a grid element, as in: > > > > To show a bean`s property which is

t:grid showing pager but not data

2011-08-09 Thread Eric Torti
Hello, guys, I`m using a grid element, as in: To show a bean`s property which is a list. The pager is rendered but not the data itself. So no rows appear. On the same page I have working as expected. I thought it might have something to do with hibernate lazy loading the list, but if that wa

Re: T5 - using t:select nested inside beaneditform

2011-08-07 Thread Eric Torti
Ok, Vangel, thanks. Problem solved! I`m going to move on to your proposition of using t:selectObject. In the event of me getting stuck :] I`ll post the problems on a new thread. Thank you for the help. I greatly appreciated it. Eric Torti On Sun, Aug 7, 2011 at 8:38 AM, Vangel V. Ajanovski

Re: T5 - using t:select nested inside beaneditform

2011-08-06 Thread Eric Torti
ontratante { @NonVisual @Id @GeneratedValue(strategy=GenerationType.IDENTITY) private Long id; private String nome; @Override public String toString() { return id.toString(); } } Do you notice anything wrong? Thank you. Eric Torti On Sat, Aug 6, 2011 at 9:18 PM

Re: T5 - using t:select nested inside beaneditform

2011-08-06 Thread Eric Torti
, Aug 6, 2011 at 11:01 AM, Vangel V. Ajanovski wrote: > On 08/06/2011 02:54 PM, Eric Torti wrote: > >> Thank you, based2. >> >> I am following the jumpstart examples. But in my case, the property I need >> to choose from a t:select is not an enum. It`s a complex typ

Re: T5 - using t:select nested inside beaneditform

2011-08-06 Thread Eric Torti
Thank you, based2. I am following the jumpstart examples. But in my case, the property I need to choose from a t:select is not an enum. It`s a complex type. The t:beaneditform should generate the select all by itself? Thanks Eric On Sat, Aug 6, 2011 at 4:44 AM, based2 wrote: > > http://jumps

T5 - using t:select nested inside beaneditform

2011-08-05 Thread Eric Torti
Hello, guys, I`m struggling to get a beaneditform to show a t:select element. I`ve accomplished the creation of the GenericSelectModel but I don`t know if I`m on the right track. My template reads as follows: The form is displayed but no is rendered. Is this the right wa