Re: [T5] How to add a extra column for delete/update action using Grid component.

2007-08-21 Thread Ben Tomasini
You can also create a bean specifically for the grid, perhaps with a static method to create a list from your model classes, and add dummy getters for your columns. This new bean can also extend your model class, and extend the getters for your @NonVisual properties. Ben On 8/21/07, Ned Jackson

Re: [T5] How to add a extra column for delete/update action using Grid component.

2007-08-21 Thread Ned Jackson Lovely
On Tue, Aug 21, 2007 at 10:21:32PM +0800, Allen Guo wrote: > Usually we display user list using grid component. It's like this > pagerPosition="both"> > > > As shown above, the source property value is 'users' is just the user > list may fetch from database. > The result will display all propert

Re: [T5] How to add a extra column for delete/update action using Grid component.

2007-08-21 Thread Marcus
Hi Allen, To remove some properties you can use @NonVisual (see grid screencast). to add some extra columns you will need to explicit declare the model used by grid, search this forum and you will find how to do this. Marcus

Re: [T5] How to add a extra column for delete/update action using Grid component.

2007-08-21 Thread Massimo Lusetti
On 8/21/07, Allen Guo <[EMAIL PROTECTED]> wrote: > What should I do? Read the mailing list archive and be aware that Form inside Grid don't work very well together. Regards -- Massimo - To unsubscribe, e-mail: [EMAIL PROTECTED

[T5] How to add a extra column for delete/update action using Grid component.

2007-08-21 Thread Allen Guo
Hi All, Usually we display user list using grid component. It's like this As shown above, the source property value is 'users' is just the user list may fetch from database. The result will display all properties of user class in table . Now I want to only display some of properties of user cla