How can do I that? Does anyone have a solution. It is also looking tricky but I don't have an answer.
views:
35answers:
2
A:
Hi,
<script type="text/javascript">
function SelectAll(id)
{
//get reference of GridView control
var grid = document.getElementById("<%= GridView1.ClientID %>");
//variable to contain the cell of the grid
var cell;
if (grid.rows.length > 0)
{
//loop starts from 1. rows[0] points to the header.
for (i=1; i<grid.rows.length; i++)
{
//get the reference of first column
cell = grid.rows[i].cells[0];
//loop according to the number of childNodes in the cell
for (j=0; j<cell.childNodes.length; j++)
{
//if childNode type is textbox or label or...
if (cell.childNodes[j].type =="TextBox")
{
//perform ur task here
}
}
}
}
}
</script>
Geetha
2010-10-22 05:49:43
I want to use in code behind not by javascript. thanks for providing this superb code
Govind KamalaPrakash Malviya
2010-10-22 05:56:23
+1
A:
Did you try something like this?
((TextBox)GridView1.Rows[e.RowIndex].Cells[0].Controls[0])
Subhash Dike
2010-10-22 06:05:58