How do I implement a checkbox list in ASP.NET MVC?
-
Just moved from WebForms to MVC and replacing various userinterfaces. Not sure how the WebForms CheckListBox is implemented, is there a jQuery plugin or a basic example of this somewhere?
-
Answer:
Depending on your need for jQuery, a template similar to this is what I routinely use. (You should be able to wire up jQuery events to this; I'm keeping this to a basic template for now.) <div class="checkBoxList"><!-- This class usually defines a max-height and overflow --> <% foreach (MyObject o in Model.MyObjects) { %> <input type="checkbox" name="myObjectSelections" value="<%=o.Value%>" /><br /> <%=o.Text%> <% } %> </div> (I may refine this answer in a couple hours once I'm at work and see my real code for this, but it should get you started.) Your action method for this will take an array of bools for the myObjectSelections argument.
Mark Redman at Stack Overflow Visit the source
Related Q & A:
- How can I implement a multilayer social network in R?Best solution by Computational Science
- How to use Authorize Attribute in asp.net MVC?Best solution by Stack Overflow
- How to use angular.js with strongly typed view in asp.net-MVC?Best solution by ojdevelops.com
- How do I make a mail list?Best solution by Yahoo! Answers
- How can I join a community in fanfiction.net?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.