Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
5answers
12k views

Why is it removed: ASP.NET MVC CheckBoxList (without MVCContrib)

Why is the CheckBoxList removed from ASP.NET MVC preview release 5? Currently I don't see any way in which I can create a list of checkboxes (with similar names but different id's) so people can ...
12
votes
0answers
2k views

jqGrid multi-checkbox custom edittype solution [closed]

For those of you trying to understand jqGrid custom edit types ... I created a multi-checkbox form element, and thought I'd share. This was built using version 3.6.4. If anyone has a more efficient ...
5
votes
4answers
792 views

Semantically Correct HTML Checkbox lists

I've got an HTML checkbox list that I would like to display in the following format: Click all that apply: Title A Title B Option 1 [ ...
5
votes
4answers
9k views

ASP.NET CheckBoxList - How to validate a user choose at least one checkbox?

I've got a checkbox group control that I want to require the user to check at least ONE box, it does not matter if they check every single one, or 3, or even just one. In the spirit of asp.net's ...
4
votes
2answers
66 views

How to hide unselected items on a checkboxlist?

I have a checkboxlist which gets the data from XML file. If a user selects an item on checkboxlist, i just want to show that item and hide everything else. And beneath that, I want to add clickable ...
4
votes
2answers
136 views

Clear values of a CheckBoxList?

I have one listBox with check box, when an event end, I need uncheck each check box. This is my xaml, but in code how can I clear this values? Thanks <ListBox Name="_employeeListBox" ...
4
votes
4answers
472 views

HTML5 - Select multi required-checkbox

I've writen some code here: http://jsfiddle.net/anhtran/kXsj9/8/ Users have to select at least 1 option on the group. But it makes me must click all of them to submit the form. How to do this issue ...
4
votes
2answers
542 views

Check List - Get Selected Values into set of Labels (Text)

I will disable the CheckBoxList once a user selects 5 values. I want to take the 5 selected items out of the CheckBoxList and assign them to 5 different labels. So far I have this: string test = ...
4
votes
4answers
6k views

How to create a CheckBoxListFor extension method in ASP.NET MVC?

I know there is a ListBoxFor extension method among the ASP.NET MVC Html helper extension methods, but I always thought that a checkbox list is more user-friendly than a list box. There was a very ...
3
votes
3answers
71 views

LINQ to CheckBoxList data items

Im using LINQ to retrive cheched Items from CheckBoxList control: Here the LINQ : IEnumerable<int> allChecked = (from ListItem item in CheckBoxList1.Items ...
3
votes
2answers
80 views

CheckBoxList not outputing the label

In one of my ASP.Net and Sitecore CMS based page I am using CheckBoxList control but somehow it's not outputting the label in the HTML. <asp:CheckBoxList runat="server" ID="chkListBrochure" ...
3
votes
4answers
184 views

How to add tooltip for Checkboxlist for each item in asp.net

<asp:CheckBoxList ID="ckl_EditRole" DataValueField="RoleName" runat="server"> </asp:CheckBoxList> public void BindListBoxPermission(int field) { ...
3
votes
3answers
4k views

ASP.NET MVC 2: CheckBoxList multiple selections: how to model bind back and get all selections?

This code: Html.CheckBoxList(ViewData.TemplateInfo.HtmlFieldPrefix, myList) Produces this mark-up: <ul><li><input name="Header.h_dist_cd" type="checkbox" value="BD" /> ...
3
votes
1answer
691 views

MvcContrib CheckBoxList

May be some one could explain that behavior: I am using CheckBoxList from the latest version of MvcContrib When my page is loading first time - I am simply return my view return ...
3
votes
1answer
547 views

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?
3
votes
6answers
2k views

asp:CustomValidator / OnServerValidate

I have a CheckBoxList that I am trying to validate that at least one of the checkboxes is checked. Markup: <asp:CustomValidator ID="RequiredFieldValidator8" ValidationGroup="EditArticle" ...
2
votes
1answer
57 views

CheckBoxList does not update the model

I defined a Person entity: public partial class Person { public string persID { get; set; } public string last_name { get; set; } public string driving_licence { get; set; } } where the driving ...
2
votes
1answer
790 views

ASP.net checkboxlist not getting checked values

I've checked all the answers but my problem seems different - i have two sets of checkbox list. On startup, i disable all checkboxes from the second set. rotected void exchList_OnDataBound(object ...
2
votes
2answers
485 views

How to create Tri-state CheckBox that summarize state of all CheckBoxes in a ListView?

I have a WPF ListView that contains CheckBox column and other columns of the custom object. I want to put another CheckBox over this ListView--tri-state CheckBox--so its state will be binded to the ...
2
votes
2answers
245 views

First item in Databound CheckBoxList not showing up

Suppose I have an SQL table entitled "Facility" which looks like this: || FacilityID || Name || 0 Lecture Theatre 1 Seminar Room 2 ...
2
votes
3answers
283 views

checkboxlist issue

I have 5 CheckBoxList controls with ID's of CheckBoxList1,CheckBoxList2, and so on. They have same list items within them. Now when I write the following line: CheckBoxList1.Items[0].Selected = ...
2
votes
2answers
981 views

Programmatically created CheckBoxList not firing when “unchecked”

I'm using ASP.NET and C#. I'm programmtically creating a checkboxlist. When I check an item, the SelectedIndexChanged event is firing. But, when I uncheck the item, the event is not fired. I'm binding ...
2
votes
3answers
3k views

Select All Items in asp.net CheckBoxList

ASP.NET and C#. I'd like to have a CheckboxList with a "Select All" item. When this particular item is selected, all others will be selected too. When selection is removed from this item, so too ...
2
votes
1answer
977 views

set checkbox from checkboxlist to uncheck using jquery

how to set one checkbox from asp.net checkboxlist control to unchecked where the index of the selected check box is i using jquery.
2
votes
1answer
667 views

Custom CheckBoxList in ASP.NET

Since ASP.NET's CheckBoxList control does not allow itself to be validated with one of the standard validation controls (i.e., RequiredFieldValidator), I would like to create a UserControl that I can ...
2
votes
1answer
905 views

How to set checked property of CheckBoxList items in aspx markup?

I have a CheckBoxList in my page, with the DataTextField and DataValueField attributes set, is there an attribute that I can use to specify a property that indicates if it should be checked? I'm ...
2
votes
2answers
335 views

ASP.NET C# - How do I set a public property for a CheckBoxList inside a UserControl?

I'm having trouble figuring this out. If I have a checkboxlist inside a usercontrol, how do I loop through (or check, really) what boxes are checked in the list? As I said in the comment below, I'd ...
2
votes
3answers
3k views

How to attach onchange event to CheckBoxList? Missing InputAttributes?

Setting onchange event for CheckBoxList using the following code doesn't work. chkListUserGroup.Attributes.Add("onchange", "document.forms[0].isRecordModified.value='true';"); How to set onchange ...
2
votes
1answer
1k views

How do you save items from a CheckBoxList in a FormView?

I am using a CheckBoxList inside of a FormView with an ObjectDataSource. In order to bind the selected values to the CheckBoxList I am using the *FormView_DataBound* event to find the CheckBoxList and ...
2
votes
4answers
9k views

How to set multiple selected values in asp.net checkboxlist

I have a asp.net checkbox list bound to a linq to sql datasource and when I check the item count of my CheckBoxList on the page load event it is 0. I want to be able to set the selected items on my ...
2
votes
2answers
5k views

toggle div visibility with a checkbox list

I have a web application(ASP.NET2.0 C#). Within it, I have a div that contains a checkbox list and a button. I want to toggle the div viewing, so I got some javascript code online to help me. Heres ...
2
votes
4answers
23k views

How to loop thru a checkboxlist and to find what's checked and not checked

i'm trying to loop thru items of a checkbox list. if it's checked, I want to set 1 value. If not, I want to set another value. I was using the below but it only gives me checked items: foreach ...
1
vote
2answers
92 views

Checkboxlist Asp.Net C#

Is there any way that I can wrap a checkboxlist in asp.net so that lets say if you have 20 checkboxes in your list, there are two columns of 10. Example: Box Box Box ...
1
vote
3answers
214 views

Performing HttpPost to store CheckBox Selected Values in Database

I have referred this question to learn how to post the checkbox selected values in the database. However, I am not able to get my selected values on debug because of a NullReferenceException (see ...
1
vote
1answer
60 views

Looping checkboxlist and create XML using XMLTextWriter VB.net

I am a beginner developer with xml and .net. I have series of checkboxlists and I want to produce an xml file depending on the user select. I want xml file to be like this. <?xml version="1.0" ...
1
vote
1answer
131 views

Populate a CheckBoxList from database table in vb.net

I am using vb.net to code and sqlserver 2008 as backend. I have a checkboxlist that needs to be filled up with data from the database. The data in the field is comma delimited (Blue, Red, Orange...) ...
1
vote
2answers
179 views

How to make ASP CheckBoxList labels stay on same line as checkbox

This may be a common problem but I'm struggling to find a solution that will fix it I have a modal popup I am displaying with jQuery, this popup contains a list of Checkboxes and a Button, the code ...
1
vote
1answer
239 views

Using sj:select with s:checkboxlist

So I have trouble trying to use any of these two elements for different reasons. First I'll describe what happens with the s:checkboxlist. When the value on the sj:select changes I want to populate a ...
1
vote
4answers
149 views

Get the values of selected checkboxes from an asp checkboxlist in jquery

I am trying to get the selected value (or values) of the checkboxlist. My problem is that I am binding the checkboxlist in c# and it's not rendering with the "Value" attribute as it would if I were ...
1
vote
2answers
220 views

Make two checkbox lists mutually exclusive

Good day friends, I got to know how we can make two checkboxes or checkboxes inside a checkbox list mutually exclusive. However my question is little different from that, Hope to get some help from ...
1
vote
2answers
270 views

Display only the Checked Items in the CheckBoxList using C#.Net:

I have One CheckBox above the CheckBoxList and its Text as "Show only Selected Items". My CheckBoxList has 10 items and three items as Selected. But when I Check the CheckBox, I want to display only ...
1
vote
2answers
231 views

ASP.Net MVC 3 CheckBoxList from database

i have a table called tb_role id role 1 admin 2 user 3 viewer and for the View is like this : <div style="width:50%; float:right;"> <legend>User Role</legend> ...
1
vote
2answers
188 views

Smallest code possible to filter checkboxlist through javascript

Project doesn't need any javascript libraries such as jQuery, Dojo, Prototype so there is no easy way i suppose. I would like to have in-depth answers for the question explaining how would one do ...
1
vote
3answers
89 views

How to apply CSS to the internal elements of an ASP.NET CheckBoxList control

I need to manipulate the attributes of a label element inside an ASP.NET CheckBoxList control. Each checkbox label needs to have a different class. The best alternative I see is to apply the classes ...
1
vote
3answers
63 views

any easy way to check if no items has been selected in a checkboxlist control?

I know I can loop through a checkboxlist.Items and see if none of them is selected, but is there a better way to find out if no items have been selected, in the code behind?
1
vote
2answers
150 views

How to obtain the ListItem inside a CheckBoxList which triggered the postback?

I have two CheckBoxLists and I need to be able to set the ListItems selected in one of the CheckBoxList depending on the items selected in the other CheckBoxList. How can I know which ListItem inside ...
1
vote
3answers
180 views

C# generated dynamic controls not displaying

I have the following C# code on one of my pages: protected override void Render(HtmlTextWriter writer) { //an array named fieldNames is delcared here writer.Write("<form ...
1
vote
4answers
517 views

How to get the selected checkbox value in post action in mvc 2

I have got a checkbox list populated from database , I want to get the ID of each checkbox list during post action so that I can save that in the db , Below is the Code : Controller: public ...
1
vote
2answers
245 views

How to disable items in CheckBoxList from Javascript?

I have a CheckBoxList with 5 fixed items. When the first item is checked, I want the rest to be disabled - client side only. Could you help me with that please?
1
vote
1answer
312 views

LINQ Query for filter by Selected Items in Checkbox List

Could not find this through Google or in SO questions... I have a checkbox listbox on my form. I want to filter my List by the list of selected Ids from that listbox that are checked, in SQL I would ...

1 2 3 4 5