hersh
hersh

Reputation: 21

listbox containing checkboxes

I'm using asp.net mvc-2 and would like to know if there's a way to create a listbox with a checkboxlist inside of it?

Upvotes: 1

Views: 1217

Answers (1)

jumpdart
jumpdart

Reputation: 1712

I would recommend using a div styled like a listbox then you can have whatever you want in there.

<div style="overflow:auto;border:1px solid #336699;padding-left:5px">
  $$$WHATEVER YOU WANT$$$
  <%= Html.ListBox(“WhateverYouWant”, Model.WhateverList) %>
</div>

binds something like

var testList = new List<SelectListItem>();

//add SeleectListItems to testList

ViewData["WhateverYouWant"] = testList;

Upvotes: 1

Related Questions