Hi,
I am using GWT-ext to create grid. I need to create an table with
multiple columns. One of the column should have checkbox as header.
For ex: Defined 'FieldDefs' and 'ColumnDefs' as below
FieldDef[] fieldDefs = new FieldDef[]{
new StringFieldDef("company"),
new FloatFieldDef("price")};
ColumnConfig[] columns = new ColumnConfig[]{
new ColumnConfig("Company", "company", 160, true, null,
"company"),
new ColumnConfig("Price", "price", 35)};
So I need to add one more checkbox column. How to do that.
Please give your suggestions
Thanks,
Cris
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---