Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
dave #1
Find what checkbox is checked in javascript
I have to sets of checkboxes. The second is to delete the row. So when I
click that checkbox I want to add it to an array. I also need to take it out
of that array when if click it again. I need to do this clientside
Dave
dave Guest
-
Get Checkbox "Checked" value on form submit
How do I get whether a checkbox is ticked in a form on a form's submission (true or false)? How do I use the Request object in ASP? -
Summarize values when checkbox is checked
Hello all, The output of some query shows for example 10 records with invoice prices. Before each record is an unchecked checkbox. What I like to... -
DataGrid with CheckBox - How to read checked rows
I have added a checkbox to a dataset that I bind to a datagrid: DataColumn colBoolean = new DataColumn ("chkBox"); colBoolean.DataType =... -
Saving checkbox states (checked or unchecked)?
Hello. I'm creating a basic form with checkboxes for "yes/no". Is there a way for the state of the checkboxes to be saved by the user (using regular... -
Capturing checked event for Template based checkbox.
Getting to grips with the datagrid better than I thought, however I've hit another problem which hopefully someone will be able to help (again.) ... -
Randy Charles Morin #2
Re: Find what checkbox is checked in javascript
If I had a checkbox named X
<input type=checkbox name=X checked>
Then I would do
if (X.checked == true)
Randy
[url]http://www.kbcafe.com[/url]
Sample
<SCRIPT LANGUAGE="JavaScript">
function yo()
{
if (X.checked == true)
{
X.checked = false;
}
}
</SCRIPT>
<body>
<input type=checkbox name=X checked/>
<input type=button onclick="yo()"/>
</body>
"dave" <davef@helixpoint.com> wrote in message news:<OKfFF2usDHA.536@tk2msftngp13.phx.gbl>...> I have to sets of checkboxes. The second is to delete the row. So when I
> click that checkbox I want to add it to an array. I also need to take it out
> of that array when if click it again. I need to do this clientside
>
> DaveRandy Charles Morin Guest



Reply With Quote

