473,406 Members | 2,369 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,406 software developers and data experts.

how to have javascript access the text of a checkbox created by .Net 2.0

Hi,

I have a page done in ASP .NET 2.0 that uses an asp:CheckBox. .Net
renders the CheckBoxin the following manner:
<input id="_ctl0_Body__players__ctl0__player" type="checkbox"
name="_ctl0:Body:_players:_ctl0:_player" /><label
for="_ctl0_Body__players__ctl0__player">SomeLastNa me, SomeFirstName </
label>

How do I access the value of the label for that CheckBox using
javascript? There is no id, tag or anything else to tie it into
something that I can grab.

Any and all help is appreciated.

Thanks,

David

Jun 6 '07 #1
2 1913

dnaumow...@gmail.com wrote:
There is no id, tag or anything else to tie it into
something that I can grab.
Hi,
Here is the "label" tag. It is not worse then any other tag.
You can get all elements of the "label" type and find among then an
element that refers to the given checkbox.
Example:

function getLabelValue(checkboxClientID)
{
var labels = document.getElementsByTagName("label");
for(var i=0; i<labels.length; i++)
{
if (labels[i].htmlFor == checkboxClientID)
return labels[i].innerHTML;
}
return null;
}
Regards, Mykola
http://marss.co.ua

Jun 6 '07 #2
On Jun 6, 6:40 am, dnaumow...@gmail.com wrote:
There is no id, tag or anything else to tie it into
something that I can grab.
All server controls have an ID.

The Client ID of your CheckBox is _ctl0_Body__players__ctl0__player

To refer to that control from the client script you can use the
ClientID property,

for example

var chk = document.getElementById('<%=player.ClientID%>');
// where 'player' is the name of your CheckBox control

Jun 6 '07 #3

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

Similar topics

5
by: Robin Becker | last post by:
I'm trying to fix a problem in IE 5.2 javascript on mac OS 10.2. Basically the problem is that we're writing dynamic form elements and these don't seem to be recognized by the form. The code...
4
by: Steph | last post by:
Hello, Can someone tell me the script to use for having a change on the same page when using checkbox function ? For example, i would to check one condition and display dynamically a button...
3
by: bhanubalaji | last post by:
hi, I am unable to disable the text(label) in javascript..it's working fine with IE,but i am using MOZILLA.. can any one help regarding this.. What's the wrong with my code? I am...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
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,...

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.