I want to do a similar implementation done by Sivaraman Dhamodharan in MVC 4 asp.net in his article found on: http://www.codeproject.com/Articles/139792/Multi-Select-List-Box-and-Checked-List-Box
I am new in MVC 4 and I'm enjoying it!
I want to do a similar implementation done by Sivaraman Dhamodharan in MVC 4 asp.net in his article found on: http://www.codeproject.com/Articles/139792/Multi-Select-List-Box-and-Checked-List-Box
I am new in MVC 4 and I'm enjoying it!
Copyright © 2021 Jogjafile Inc.
You can create Multi-Select boxes for "Visit Area" and "Assigned Id" (as mentioned in the article you have put) very easily in MVC. For the select box with the checkboxes, you can create a table in MVC.
Please follow the steps below.
Let's assume that that the view model for the page is AssignWorkViewModel and the view model for the product is ProductViewModel.
Let's assume that the action method name is "AssignWork"
The View,
The result,
I think this might help you to start.