Hi

I am trying to put together an application which uses an editable grid
to modify a data model. 1 field needs to be a drop down selection, and
another needs to be a multi-select. From what I can work out, the
listfield control will work for multi-select - however I have not
worked out how to hook it into the grid correctly, please could
someone give an example. I have had a search and have been unable to
find an example for this (but I may be looking in the wrong place!)

I have a simple data model e.g.

Model{
  int Id;
  string Name;
  int CategoryId;
  List <role> Roles;
}

the category Id will be populated from a drop down - displaying the
name not the id

category{
  int Id;
  string CategoryName;
}

the role is equally straightforward:

role{
 int Id;
 string RoleName;
}

how should I implement a multi-select list to edit the roles?

thanks for any assistance.

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to