Click here to Skip to main content
15,884,388 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,

i having 6 column in mt gridview,
among those three (3) columns are checkbox
Two column is for cheking status
one column is for deleting multiple records from dridview
ihave written code for this

C#
function ConfirmEdit() {
           document.getElementById("<%= lblErrorMsg.ClientID %>").innerHTML = "";
           var count = document.getElementById("<%=hfCount1.ClientID %>").value;
           var gv = document.getElementById("<%=gvItemCategory.ClientID%>");
           var chk = gv.getElementsByTagName("input");
           for (var i = 0; i < chk.length; i++) {
               if (chk[i].checked && chk[i].id.indexOf("chkHeader") == -1) {
                   count++;
               }
           }
           if (count == 0) {
               document.getElementById("<%= lbl.ClientID %>").innerHTML = "No record selected to edit.";
               return false;
           }
           else {
               if (count > 1) {
                   document.getElementById("<%= lbl.ClientID %>").innerHTML = "Multiple edit is not allowed.";
                   return false;
               }
           }
       }


while chking the input i am getting all the checkbox in three columns.
its creating problem for other operation on the status column.




Any one can tell me that how i can get the check box of that particular column

ie. if i am having 10 row in my gridview then the

var chk = gv.getElementsByTagName("input"); must have value 10 not 30 as i am getting.
Posted

1 solution

Suppose the "select" checkboxes are at column 1(index 0). Following is the sample code. Just modify it and give it a try.

JavaScript
function ConfirmEdit() 
{
vargrid = document.getElementById("<%= gvItemCategory.ClientID %>"); 
var cellToCheck;
var count = 0;
if (grid.rows.length > 0)
{
for (i=1; i<grid.rows.length;>{
cellToCheck = grid.rows[i].cells[0];
for (j=0; j<celltocheck.childnodes.length;>{          
if (cellToCheck.childNodes[j].type =="checkbox")
{
if(cellToCheck.childNodes[j].checked == true)
count++;
}
}
}       
}
}


The line in bold is used for checkboxes in column "0".
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900