Re: T5 best pattern for grid and beaneditform

2007-06-20 Thread Eugene Lozovan
Have a look: .html: table t:type=grid rowsPerPage=5 row=tUser source=usersList model=model ... some code here /table .java: void pageLoaded() { _model = _beanModelSource.create(TUser.class, true, _resources); _model.remove(password); } and:

T5 best pattern for grid and beaneditform

2007-06-18 Thread Gabriel Lozano
Hi, I'm right now working in user administration. So I have a page that list the users I have but I don't want to show passwords so I use the 'NonVisual' anotation in the User class. But, in the edit page, I want to insert some new password for a user and because of the anotation I am not able.

Re: T5 best pattern for grid and beaneditform

2007-06-18 Thread Howard Lewis Ship
Explicit parameters to handle this are coming; in the bean time search the mailing list archives, this came up before. By pre-building the model passed to the Grid, you can control which columns are visible. On 6/18/07, Gabriel Lozano [EMAIL PROTECTED] wrote: Hi, I'm right now working in user