473,409 Members | 1,967 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

CheckBoxList problem. Want to add some javascript to each checkbox

Hi,
I have a CheckBoxList and I want to add some javascript code to each
CheckBox created by this CheckBoxList. I tried iterating through all items
of the list, all the controls, do a FindControl, et al. with no good result.
I would use the Control.Attribute.Add("OnClick", "some javascript code")

Does someone know a solution?

Thanks

ThunderMusic
Dec 15 '05 #1
7 2216
ThunderMusic wrote:
Hi,
I have a CheckBoxList and I want to add some javascript code to each
CheckBox created by this CheckBoxList. I tried iterating through all items
of the list, all the controls, do a FindControl, et al. with no good result.
I would use the Control.Attribute.Add("OnClick", "some javascript code")

Does someone know a solution?

Thanks

ThunderMusic


If you want to add javascript in this way you'll need to do it before
the controls are rendered to the page i.e. before page load. Try to
using Control.Attribs.Add in the soonest possible event; usually
onInitEvent or onItemDataBound.

--
Rob Schieber
Dec 15 '05 #2
Thanks for the help. Indeed, it worked in the OnInit method of the page, but
I changed the way I'm doing it, so now the OnClick event is managed directly
from the form, so everything clickable is readonly (it is a print preview
form) so I only have to manage the OnClick once.

Thanks a lot

ThunderMusic

"Rob Schieber" <sc******@hotmail.com> wrote in message
news:eg**************@TK2MSFTNGP14.phx.gbl...
ThunderMusic wrote:
Hi,
I have a CheckBoxList and I want to add some javascript code to each
CheckBox created by this CheckBoxList. I tried iterating through all
items of the list, all the controls, do a FindControl, et al. with no
good result. I would use the Control.Attribute.Add("OnClick", "some
javascript code")

Does someone know a solution?

Thanks

ThunderMusic


If you want to add javascript in this way you'll need to do it before the
controls are rendered to the page i.e. before page load. Try to using
Control.Attribs.Add in the soonest possible event; usually onInitEvent or
onItemDataBound.

--
Rob Schieber

Dec 16 '05 #3
The CheckBoxList is giving me a hard time too if I may jump into this news
article. The checkboxes have colored backgrounds I can't figure out how to
get rid of and I can't apply padding or margins to the text noting this is a
piece of cake when working with HTML but this control seems to be a
composite control and I can't figure out how to access the properties I
need. Any idea how I might clean it up?

<%= Clinton Gallagher

"ThunderMusic" <NO****@NoSPAM.Info> wrote in message
news:uH**************@TK2MSFTNGP11.phx.gbl...
Thanks for the help. Indeed, it worked in the OnInit method of the page,
but I changed the way I'm doing it, so now the OnClick event is managed
directly from the form, so everything clickable is readonly (it is a print
preview form) so I only have to manage the OnClick once.

Thanks a lot

ThunderMusic

"Rob Schieber" <sc******@hotmail.com> wrote in message
news:eg**************@TK2MSFTNGP14.phx.gbl...
ThunderMusic wrote:
Hi,
I have a CheckBoxList and I want to add some javascript code to each
CheckBox created by this CheckBoxList. I tried iterating through all
items of the list, all the controls, do a FindControl, et al. with no
good result. I would use the Control.Attribute.Add("OnClick", "some
javascript code")

Does someone know a solution?

Thanks

ThunderMusic


If you want to add javascript in this way you'll need to do it before the
controls are rendered to the page i.e. before page load. Try to using
Control.Attribs.Add in the soonest possible event; usually onInitEvent or
onItemDataBound.

--
Rob Schieber


Dec 20 '05 #4
my guess would be to add your things in the OnInit event of the page... it
worked for me, maybe it will for you too...

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> a écrit dans le
message de news: %2***************@TK2MSFTNGP11.phx.gbl...
The CheckBoxList is giving me a hard time too if I may jump into this news
article. The checkboxes have colored backgrounds I can't figure out how to
get rid of and I can't apply padding or margins to the text noting this is
a piece of cake when working with HTML but this control seems to be a
composite control and I can't figure out how to access the properties I
need. Any idea how I might clean it up?

<%= Clinton Gallagher

"ThunderMusic" <NO****@NoSPAM.Info> wrote in message
news:uH**************@TK2MSFTNGP11.phx.gbl...
Thanks for the help. Indeed, it worked in the OnInit method of the page,
but I changed the way I'm doing it, so now the OnClick event is managed
directly from the form, so everything clickable is readonly (it is a
print preview form) so I only have to manage the OnClick once.

Thanks a lot

ThunderMusic

"Rob Schieber" <sc******@hotmail.com> wrote in message
news:eg**************@TK2MSFTNGP14.phx.gbl...
ThunderMusic wrote:
Hi,
I have a CheckBoxList and I want to add some javascript code to each
CheckBox created by this CheckBoxList. I tried iterating through all
items of the list, all the controls, do a FindControl, et al. with no
good result. I would use the Control.Attribute.Add("OnClick", "some
javascript code")

Does someone know a solution?

Thanks

ThunderMusic

If you want to add javascript in this way you'll need to do it before
the controls are rendered to the page i.e. before page load. Try to
using Control.Attribs.Add in the soonest possible event; usually
onInitEvent or onItemDataBound.

--
Rob Schieber



Dec 20 '05 #5
Hmmm. I was concerned that I would have to write code to work around a poor
implementation of these "list" controls.

<%= Clinton Gallagher

"ThunderMusic" <NO.danlat.at.hotmail.com.SPAM> wrote in message
news:eQ*************@TK2MSFTNGP12.phx.gbl...
my guess would be to add your things in the OnInit event of the page...
it worked for me, maybe it will for you too...

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> a écrit dans le
message de news: %2***************@TK2MSFTNGP11.phx.gbl...
The CheckBoxList is giving me a hard time too if I may jump into this
news article. The checkboxes have colored backgrounds I can't figure out
how to get rid of and I can't apply padding or margins to the text noting
this is a piece of cake when working with HTML but this control seems to
be a composite control and I can't figure out how to access the
properties I need. Any idea how I might clean it up?

<%= Clinton Gallagher

"ThunderMusic" <NO****@NoSPAM.Info> wrote in message
news:uH**************@TK2MSFTNGP11.phx.gbl...
Thanks for the help. Indeed, it worked in the OnInit method of the page,
but I changed the way I'm doing it, so now the OnClick event is managed
directly from the form, so everything clickable is readonly (it is a
print preview form) so I only have to manage the OnClick once.

Thanks a lot

ThunderMusic

"Rob Schieber" <sc******@hotmail.com> wrote in message
news:eg**************@TK2MSFTNGP14.phx.gbl...
ThunderMusic wrote:
> Hi,
> I have a CheckBoxList and I want to add some javascript code to each
> CheckBox created by this CheckBoxList. I tried iterating through all
> items of the list, all the controls, do a FindControl, et al. with no
> good result. I would use the Control.Attribute.Add("OnClick", "some
> javascript code")
>
> Does someone know a solution?
>
> Thanks
>
> ThunderMusic

If you want to add javascript in this way you'll need to do it before
the controls are rendered to the page i.e. before page load. Try to
using Control.Attribs.Add in the soonest possible event; usually
onInitEvent or onItemDataBound.

--
Rob Schieber



Dec 21 '05 #6
hi,
yes, but we're talking about 1line of code

YourChkBoxList.Attributes.Add("Style", "Margin: 5px; background-color:
#FFFFFF")

and that's about it. if it's not exactly it, it is quite similar... As I
said in an earlier post, I don't use it anymore because I found an easier
solution to my problem, but I think it's the way I was doing it. if it's not
working, try going trought all the controls (child controls of your
chkboxlist) and add the attribute, but in the OnInit, I don't think they
will be created, so that's why you can add it directly to the chkboxlist...
and as for style, you could try to add it directly in the aspx code because
it's not likely to change... I didn't try it, but it could work... it was
not suited for my problem though as each chkbox had something
different......

I hope it helps

ThunderMusic
"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> a écrit dans le
message de news: eL**************@tk2msftngp13.phx.gbl...
Hmmm. I was concerned that I would have to write code to work around a
poor implementation of these "list" controls.

<%= Clinton Gallagher

"ThunderMusic" <NO.danlat.at.hotmail.com.SPAM> wrote in message
news:eQ*************@TK2MSFTNGP12.phx.gbl...
my guess would be to add your things in the OnInit event of the page...
it worked for me, maybe it will for you too...

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> a écrit dans le
message de news: %2***************@TK2MSFTNGP11.phx.gbl...
The CheckBoxList is giving me a hard time too if I may jump into this
news article. The checkboxes have colored backgrounds I can't figure out
how to get rid of and I can't apply padding or margins to the text
noting this is a piece of cake when working with HTML but this control
seems to be a composite control and I can't figure out how to access the
properties I need. Any idea how I might clean it up?

<%= Clinton Gallagher

"ThunderMusic" <NO****@NoSPAM.Info> wrote in message
news:uH**************@TK2MSFTNGP11.phx.gbl...
Thanks for the help. Indeed, it worked in the OnInit method of the
page, but I changed the way I'm doing it, so now the OnClick event is
managed directly from the form, so everything clickable is readonly (it
is a print preview form) so I only have to manage the OnClick once.

Thanks a lot

ThunderMusic

"Rob Schieber" <sc******@hotmail.com> wrote in message
news:eg**************@TK2MSFTNGP14.phx.gbl...
> ThunderMusic wrote:
>> Hi,
>> I have a CheckBoxList and I want to add some javascript code to each
>> CheckBox created by this CheckBoxList. I tried iterating through all
>> items of the list, all the controls, do a FindControl, et al. with no
>> good result. I would use the Control.Attribute.Add("OnClick", "some
>> javascript code")
>>
>> Does someone know a solution?
>>
>> Thanks
>>
>> ThunderMusic
>
> If you want to add javascript in this way you'll need to do it before
> the controls are rendered to the page i.e. before page load. Try to
> using Control.Attribs.Add in the soonest possible event; usually
> onInitEvent or onItemDataBound.
>
> --
> Rob Schieber



Dec 22 '05 #7
Thanks for your comments. Accessing the child controls (Labels) of the
CheckBoxList is going to be a bit tricky I think as the Labels emitted by a
ListItem are already being rendered using a <span>. I am also using the
CheckBoxList as a child of a Wizard in 2.0 Master Pages which adds a bit of
spaghetti to the bowl. I better just get busy...

<%= Clinton Gallagher

"ThunderMusic" <NO.danlat.at.hotmail.com.SPAM> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
hi,
yes, but we're talking about 1line of code

YourChkBoxList.Attributes.Add("Style", "Margin: 5px; background-color:
#FFFFFF")

and that's about it. if it's not exactly it, it is quite similar... As I
said in an earlier post, I don't use it anymore because I found an easier
solution to my problem, but I think it's the way I was doing it. if it's
not working, try going trought all the controls (child controls of your
chkboxlist) and add the attribute, but in the OnInit, I don't think they
will be created, so that's why you can add it directly to the
chkboxlist... and as for style, you could try to add it directly in the
aspx code because it's not likely to change... I didn't try it, but it
could work... it was not suited for my problem though as each chkbox had
something different......

I hope it helps

ThunderMusic
"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> a écrit dans le
message de news: eL**************@tk2msftngp13.phx.gbl...
Hmmm. I was concerned that I would have to write code to work around a
poor implementation of these "list" controls.

<%= Clinton Gallagher

"ThunderMusic" <NO.danlat.at.hotmail.com.SPAM> wrote in message
news:eQ*************@TK2MSFTNGP12.phx.gbl...
my guess would be to add your things in the OnInit event of the page...
it worked for me, maybe it will for you too...

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> a écrit dans
le message de news: %2***************@TK2MSFTNGP11.phx.gbl...
The CheckBoxList is giving me a hard time too if I may jump into this
news article. The checkboxes have colored backgrounds I can't figure
out how to get rid of and I can't apply padding or margins to the text
noting this is a piece of cake when working with HTML but this control
seems to be a composite control and I can't figure out how to access
the properties I need. Any idea how I might clean it up?

<%= Clinton Gallagher

"ThunderMusic" <NO****@NoSPAM.Info> wrote in message
news:uH**************@TK2MSFTNGP11.phx.gbl...
> Thanks for the help. Indeed, it worked in the OnInit method of the
> page, but I changed the way I'm doing it, so now the OnClick event is
> managed directly from the form, so everything clickable is readonly
> (it is a print preview form) so I only have to manage the OnClick
> once.
>
> Thanks a lot
>
> ThunderMusic
>
> "Rob Schieber" <sc******@hotmail.com> wrote in message
> news:eg**************@TK2MSFTNGP14.phx.gbl...
>> ThunderMusic wrote:
>>> Hi,
>>> I have a CheckBoxList and I want to add some javascript code to each
>>> CheckBox created by this CheckBoxList. I tried iterating through all
>>> items of the list, all the controls, do a FindControl, et al. with
>>> no good result. I would use the Control.Attribute.Add("OnClick",
>>> "some javascript code")
>>>
>>> Does someone know a solution?
>>>
>>> Thanks
>>>
>>> ThunderMusic
>>
>> If you want to add javascript in this way you'll need to do it before
>> the controls are rendered to the page i.e. before page load. Try to
>> using Control.Attribs.Add in the soonest possible event; usually
>> onInitEvent or onItemDataBound.
>>
>> --
>> Rob Schieber
>
>



Dec 23 '05 #8

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

Similar topics

0
by: Bryce Budd | last post by:
Hello All, I've been a taker of information from newsgroups for a long time and thought I'd finally make a contribution back to the community whose supported me when I've needed it. After all...
3
by: Robin Day | last post by:
I run some code on the changed event of checkbox lists. Its quite simple, nothing more than showing / hiding some other parts of the page. Using Autopostback and Server side code works fine, but is...
10
by: suzy | last post by:
i have generated a list of checkboxes (at runtime) using the checkboxlist control. i want to add an onclick event onto each checkbox so i can perform a count of how many items have been...
3
by: JD | last post by:
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)....
1
by: Ryan Scully | last post by:
Hello I have problem with determining exactly what CheckBoxList element is selected using JavaScript code. When I databind to the checkboxlist it renders it on the page and instead of giving each...
3
by: Dune | last post by:
Hi, Is there anyway to get the datavaluefield from a databound checkboxlist using javascript? If not, is there any way to associate a custom attribute with the databound checkboxlist items so...
2
by: Stimp | last post by:
I have a checkboxlist (chkMyList) which is created from a (name, value) pair from a database table. I have a read-only textbox which will be used to hold a total of all the numerical values of...
0
by: webmaster | last post by:
Hi all, I'm tearing my hair out with this one. I have successfully implemented by own RadioButtonList in order to provide additional functionality and a DIV rather than TABLE-based layout in...
4
by: haresh.amis | last post by:
hello to all, I m using .net 2.0 and i face a problem that is as under Well I have a checkboxlist which i bound in .cs page now I want to count that how many checkboxes ate checked ( In...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.