0
votes
2answers
22 views
CheckBoxList not updating it’s checked/not checked state.
Hey, I have a CheckBoxList that gets populated with the database. When I make any changes to the state (check or uncheck) of a single checkbox, it doesn't get returned when I submi …
0
votes
2answers
968 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 sel …
2
votes
2answers
55 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 …
0
votes
2answers
57 views
ASP.NET having a checkboxlist with my nice checkboxes in a 4x5 grid
I have a checkboxlist which either displays them in a list
A
B
C
D
or horizontally
A B C D
I want to arrange them in a nice grid like this
A B C D
E F G H
I J K L
How do I …
4
votes
4answers
121 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 …
1
vote
2answers
545 views
ListView containing CheckBoxList - Selected items not showing as checked
I have a ListView with an EditItemTemplate that calls a method onItemEditing.
Within my ListView I have a CheckBoxList bound using LINQ.
In my onItemEditing method, I'm trying to …
1
vote
2answers
186 views
DataBound CheckBoxList
Hi,
I have a website programmed in Asp.Net and use a ListView for displaying data. The data is coming from a LinqDataSource.
In my EditItemTemplate I have a CheckBoxList which co …
0
votes
4answers
2k views
Asp.net updatepanel clears checkboxlist selections
I have an ASP.Net CheckBoxList control inside an Ajax UpdatePanel.
I will include the code (C#) along with the HTML below.
I have found that it is something with the CheckBoxList …
0
votes
2answers
228 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';");
H …
0
votes
3answers
619 views
JQuery: getting the value/text/innerHtml of a checkbox in an ASP.NET CheckBoxList control
I've got a bunch of checkboxes generated by an asp.net CheckBoxList control. I want to get the text the user sees next to the control on the page.
With similar controls, like Rad …
9
votes
4answers
2k views
WHY is it removed: asp.net MVC CheckBoxList (w/o 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 similiar names but different id's …
0
votes
1answer
105 views
CheckboxList - Use web.config value in text field
Hi there,
The scenario I'm dealing with is I have a set of entries in a database that have an image associated with them. This image needs to be 'accepted' or 'rejected' via a web …
0
votes
1answer
512 views
How do I bind a dictionary to a set of checkboxes using ASP.NET MVC?
My need is to 'bind'
Dictionary<MyType, bool>
to list of checkboxes in asp.net mvc.
I'm confused about how to accomplish that. Could anyone help me?
2
votes
2answers
1k views
toggle div visibility with a checkbox list
Hi, 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 on …
0
votes
1answer
746 views
CheckBoxList with multiple values bound to a single flag enum
I have a FormView (bound to an ObjectDataSource) that contains a CheckBoxList that I'd like to bind to a single property of the underlying object that is an Enum with the FlagsAttr …
