Tagged Questions
The oncheckedchanged tag has no wiki summary.
5
votes
3answers
7k views
onCheckedChanged event of checkbox within a gridview
I have a checkbox control in the gridview with Autopost back = true
Code:
' runat="server" AutoPostBack="True" OnCheckedChanged="chkJobID_CheckedChanged" />
Now, when i ...
1
vote
1answer
130 views
adding an event handler to a dynamically created checkbox (aspx, c#)
So my problem is that I want to add an event handler to a dynamically created CheckBox. I have already looked at other ways to do this, and decided that creating a dynamic table which contains my ...
1
vote
1answer
548 views
OnCheckedChanged event not firing
I have a GridView with a column of checkboxes (the rest of the GridView is being populated from a database). I'm using AJAX to perform different functions, and I'm wondering if i'm just not calling ...
1
vote
2answers
191 views
VB - how to link up a Check_change to code behind for a checkbox
How do I enable a check_change for a checkbox in VB.
Here is what I have so far.
Code Behind:
Protected Sub CheckBoxCash_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs) ...
1
vote
0answers
928 views
Checkbox with AutoPostBack and OnCheckedChanged Event Fires Event when Page Loads
I have a checkbox in a repeater and it is bound to a data source where it sets the checkbox to checked or unchecked. The checkbox is set to AutoPostBack and has an OnCheckedChange event.
The problem ...
0
votes
5answers
166 views
In asp.net, page_load occuring before radio button OnCheckedChanged event
I have two radio button on my asp.net page, with AutoPostBack = True
When I click on either of those, they each set a flag SaveData=False
However, when I click on them, the page_load event occurs ...
0
votes
2answers
207 views
checkbox.checkchanged event question. How do I find out which Checkbox was checked/unchanged
I'm using a Repeater:
<form id="form1" runat="server">
<div>
<asp:Repeater ID="repeater" runat="server" OnItemDataBound="repeater_ItemDataBound">
...
0
votes
1answer
196 views
Attach OnCheckedChanged event to a div.onclick()
Is it possible to fire the OnCheckedChanged event of an ASP.NET checkbox to a div?
So, when I click on the div, the OnCheckedChanged event should fire.
The checkboxes are inside a repeater and the ...
0
votes
1answer
245 views
YUI Radiobutton ASP.Net oncheckedchanged
I'm using YUI framework to style my radiobuttons and want to use the oncheckedchanged event to redirect to another page. It works just fine with traditional radiobuttons but using with the YUI ...
0
votes
1answer
952 views
OnCheckedChange Event does not execute my event
I've been reading a few posts in here and some are related to my problem, but for some reason the solutions provided dont work for me. Basically I have two GridView controls with checkboxes. They have ...
0
votes
2answers
642 views
Determining row of grid from templated checkbox selection with autopostback
I have a databound grid with a templated field column that is a checkbox. When the user checks the checkbox, it will autopostback and update the row to indicate the box's check state.
My first ...
0
votes
3answers
487 views
What row index has a template checkbox in a datagrid?
I have a datagrid and there is a checkbox which is template in each row.
Suppose I am in CheckedChanged event of one of the checkboxes. Is there any way I can tell in which row of the datagrid that ...
0
votes
1answer
136 views
Several RadioButtons in a group unhandling event
If you have several radiobuttons in a group, and you have Checked event handlers in your code behind, if a radiobutton is checked how do you cancel this event handling so that the new radiobutton ...
0
votes
3answers
151 views
How to distinguish user vs programmatic changes in WinForms CheckBox?
I have logic on a CheckBox's OnCheckedChanged event that fires on form load as well as when user changes check state. I want the logic to only execute upon user action.
Is there a slick way of ...
0
votes
4answers
7k views
OnCheckedChanged event not firing in GridView at all
I have a GridView with an asp CheckBox in a TemplateField. The TemplateField is defined as follows:
<asp:TemplateField HeaderText="HeaderName">
<ItemTemplate>
<asp:CheckBox ...
0
votes
5answers
7k views
Clicking checkbox causes onCheckedChanged to fire twice
I have a GridView with a TemplateField with a checkbox. My goal is to capture the onclick event using autopostback and setting a database flag. My only problem is that the event fire's twice. The ...