Reputation: 3996
I have an e-commerce system that allows a product to have multiple categories. In the admin user interface, I'm going to allow the administrator to be able to add as many categories to the product as he would like. What are some good ways to accomplish this? I don't want to do a select-list where the user has to hold down the control key, etc.
Thanks.
Upvotes: 3
Views: 2179
Reputation: 180777
You can use a row of checkboxes in a table of categories to perform the selection.
ASP.Net MVC - Handle Multiple Checkboxes
Upvotes: 3