Avatar of brgdotnet
brgdotnetFlag for United States of America

asked on 

iterating through GridView and trying to figure out how to check if the check box controlled is enabled or not ??

How can I check if my check box control is enabled or not? I have tried the following code check :
if(inputList[i].disabled) {  }

But it does not work, because there is not a "disabled" property for my check box control.

The GridView was created dynamically in asp.net but ultimately I need to be able to set the values using Java script. All the code below works great except I don't know how to check if the checkbox is enabled or not? My goal is to check the checkbox if it is indeed disabled.

function UncheckAll(objectRef)
{

  var row = objectRef.parentNode.parentNode;
  var GridView = row.parentNode;
  var inputList = GridView.getElementByTagName("input");
  

 for(var i = 0; i < inputList.length; i++)
  {
     if(inputList[i].type == "checkbox")
	{
          if(inputList[i].disabled) // .disabled is not a property, so how can I check if it is enabled or not?
          {

          }
	  
	}


  }


}

Open in new window

JavaScript

Avatar of undefined
Last Comment
brgdotnet
Avatar of Leonidas Dosas
Leonidas Dosas
Flag of Greece image

The checkbox element has an attr named "checked" So try with this change your  code.
function UncheckAll(objectRef)
{

  var row = objectRef.parentNode.parentNode;
  var GridView = row.parentNode;
  var inputList = GridView.getElementByTagName("input");
  

 for(var i = 0; i < inputList.length; i++)
  {
     if(inputList[i].type == "checkbox")
	{
//I changed the disabled property with the checked property
          if(inputList[i].checked===false) // .disabled is not a property, so how can I check if it is enabled or not?
          {

          }
	  
	}

Open in new window


PS
If it not working the above then set manual the attr checked in checkbox element and then retry to tun the code
Avatar of brgdotnet
brgdotnet
Flag of United States of America image

ASKER

I know how to check if the check box is checked, just like you showed above however that  code isn't helpful because I need to be able to tell if the check box is enabled or disabled? I have several check boxes that are checked, but they are also disabled. So again I need to know how to check if they are enabled or disabled.
ASKER CERTIFIED SOLUTION
Avatar of Leonidas Dosas
Leonidas Dosas
Flag of Greece image

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
Avatar of brgdotnet
brgdotnet
Flag of United States of America image

ASKER

Thank you so much, great help !!!!
JavaScript
JavaScript

JavaScript is a dynamic, object-based language commonly used for client-side scripting in web browsers. Recently, server side JavaScript frameworks have also emerged. JavaScript runs on nearly every operating system and in almost every mainstream web browser.

127K
Questions
--
Followers
--
Top Experts
Get a personalized solution from industry experts
Ask the experts
Read over 600 more reviews

TRUSTED BY

IBM logoIntel logoMicrosoft logoUbisoft logoSAP logo
Qualcomm logoCitrix Systems logoWorkday logoErnst & Young logo
High performer badgeUsers love us badge
LinkedIn logoFacebook logoX logoInstagram logoTikTok logoYouTube logo