In this asp.net MVC 5 tutorial Tom Dykstra noted:
The approach taken here to edit instructor course data works well when there is a limited number of courses. For collections that are much larger, a different UI and a different updating method would be required.
Currently I'm working on some college project in MVC5 where "main" model has two many-to-many relationships. Both are large collections(400+) that should be binded(with multiple selections) to "main" model by using only checkboxes in Create or Edit methods. So, I took that mentioned asp.net MVC tutorial and made everything work fine, except page is loaded with 800 checkboxes so you have to scroll all the way down to submit button.
Is there any way to put all those checkboxes in one scrollable field?
Thank you in advance.