472,328 Members | 1,541 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,328 software developers and data experts.

Checkboxlist inside Repeater - doesn't fire click event for Checkboxlist

JD
Hello,
I have a problem with checkboxlist inside Repeater (in ASP.NET page).
I am able to create Checkboxlist and bind it (inside Repeater_ItemBound -
including setting checked/unchecked). Checkboxlist has Autopostback=true so
whenever I click on checkbox, the page is submitted to the server.

Here starts my problem:
I am not able to capture the click event of checkbox list to find out which
checkbox was clicked (which generated click event) and retrieve the value
associated with it (for further processing).
I have List_SelectedIndexChanged function but it never fires. I am obviously
missing something, I don't undestand event bubling enough.
Any idea? Any help?
Thanks
JD
Nov 18 '05 #1
3 6606
JD,

I have some sample code in the code library of my web site,
www.aboutfortunate.com, which shows how to get the value of the row clicked
in a datagrid when a check box is checked.

While it doesn't use a repeater or a checkbox list the process is very
similar to what you need to do and quite a bit simpler so it may be good for
you to give it a glance. It may help.

Click the "code library" link on the top right of the home page and then use
the search box to search for: "reference a checkbox" or something similar
and you'll find it.

Pay particular attention to how I'm using "oncheckedchanged" in the check
boxe's auto post back to call the proper subroutine when the checkbox is
clicked.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"JD" <sk*****@hotmail.com> wrote in message
news:uy*************@TK2MSFTNGP09.phx.gbl...
Hello,
I have a problem with checkboxlist inside Repeater (in ASP.NET page).
I am able to create Checkboxlist and bind it (inside Repeater_ItemBound -
including setting checked/unchecked). Checkboxlist has Autopostback=true so whenever I click on checkbox, the page is submitted to the server.

Here starts my problem:
I am not able to capture the click event of checkbox list to find out which checkbox was clicked (which generated click event) and retrieve the value
associated with it (for further processing).
I have List_SelectedIndexChanged function but it never fires. I am obviously missing something, I don't undestand event bubling enough.
Any idea? Any help?
Thanks
JD

Nov 18 '05 #2
have you tried to create the event of the checkboxlist like

<asp:CheckBoxList id=.... OnSelectedIndexChanged="YourEventName"
AutoPostBack=True>
.....

this will tell to the asp.net that when a checkbox is clicked the
YourEventName event will fired, BUT you have to declare your event as Public
other wise asp.net won't find it :(

Hope This Helps
Regards
Martin Marinov

"JD" <sk*****@hotmail.com> wrote in message
news:uy*************@TK2MSFTNGP09.phx.gbl...
Hello,
I have a problem with checkboxlist inside Repeater (in ASP.NET page).
I am able to create Checkboxlist and bind it (inside Repeater_ItemBound -
including setting checked/unchecked). Checkboxlist has Autopostback=true so whenever I click on checkbox, the page is submitted to the server.

Here starts my problem:
I am not able to capture the click event of checkbox list to find out which checkbox was clicked (which generated click event) and retrieve the value
associated with it (for further processing).
I have List_SelectedIndexChanged function but it never fires. I am obviously missing something, I don't undestand event bubling enough.
Any idea? Any help?
Thanks
JD

Nov 18 '05 #3
Hi,

an important thing in all this is that you recreate the control before the
viewstate is restored, for info when everything happens see this link:
http://msdn.microsoft.com/library/de...nLifecycle.asp .
If the same control structure doesn't exists when the viewstate is restored
it will not be able to "discover" the events. As Marintov wrote you have
also to define where this event is going to be handled in the "tag" of the
checkbox list.

So what does all this mean, basically this (only pseudo code for how the
behind code could be structured.):
Sub Page_Init()
// code to bind your repeater
// after the page init the viewstate will be restored.
End Sub

Sub ChkBoxlist_IndexChange()
// here is your event!
// if you want to access some other control that is within the same
repeater element use the parent property of the reperater.
End Sub
I hope this clears things up
Cheers
Cristian

"marinov" <tr*@me.com> wrote in message
news:Op*************@TK2MSFTNGP10.phx.gbl...
have you tried to create the event of the checkboxlist like

<asp:CheckBoxList id=.... OnSelectedIndexChanged="YourEventName"
AutoPostBack=True>
....

this will tell to the asp.net that when a checkbox is clicked the
YourEventName event will fired, BUT you have to declare your event as Public other wise asp.net won't find it :(

Hope This Helps
Regards
Martin Marinov

"JD" <sk*****@hotmail.com> wrote in message
news:uy*************@TK2MSFTNGP09.phx.gbl...
Hello,
I have a problem with checkboxlist inside Repeater (in ASP.NET page).
I am able to create Checkboxlist and bind it (inside Repeater_ItemBound - including setting checked/unchecked). Checkboxlist has Autopostback=true

so
whenever I click on checkbox, the page is submitted to the server.

Here starts my problem:
I am not able to capture the click event of checkbox list to find out

which
checkbox was clicked (which generated click event) and retrieve the value associated with it (for further processing).
I have List_SelectedIndexChanged function but it never fires. I am

obviously
missing something, I don't undestand event bubling enough.
Any idea? Any help?
Thanks
JD


Nov 18 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Stan | last post by:
I cannot make the link buttons fire ItemCommand from repeater control. Here is the code: <asp:repeater id=rptLetters runat="server">...
7
by: Scott Schluer | last post by:
Hi All, I have a functioning datagrid on "Page 1" that displays order information for a single order (this is for an e-commerce site). It's...
3
by: Leigh Webber | last post by:
I have an HTMLAnchor control on my aspx page. When it's not inside a repeater, it works fine. When I put it inside a repeater control, the handler...
3
by: I am Sam | last post by:
I keep getting the following error message when I try to iterate through a CheckBoxList control: Object reference not set to an instance of an...
4
by: Patrick.O.Ige | last post by:
I have a CheckBoxList in a DataList and i'm trying to get item Selected after doing a postBack. I have set my CheckBoxlist AutoPostBack="True" Any...
3
by: Shimon Sim | last post by:
I put linkbutton in a repeater header. I attached event handler in makeup as onclick="btnSort_Click". Made btnSort_Click method public. It doesn't...
2
by: Bart Van Hemelen | last post by:
The situation: I have a CheckBoxList cblTest, the items are disabled in cblTest_DataBound in a foreach (ListItem oItem in cblTest.Items) loop. I...
1
by: champ.supernova | last post by:
Hi, I have a dropdownlist which is repeated inside a repeater. What I'm wanting is for when one instance of the dropdownlist has its selection...
3
by: | last post by:
Hi all, I have a CheckBoxList control which has about 10 items. I have set autopostback=true and also set an eventhandler for...
0
by: tammygombez | last post by:
Hey fellow JavaFX developers, I'm currently working on a project that involves using a ComboBox in JavaFX, and I've run into a bit of an issue....
0
by: concettolabs | last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: CD Tom | last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.