In gridview for each checkbox checked, my gridview is copy row value from one to another, but I have a checbox on header which is for ALL SELECTION
What is want is, when I check on that checkbox, the whole row should get copy. Here is my js and gridview code:-
<script type="text/javascript">
function GrdConfirmation_OnClientSelect(record, rowIndex, cellIndex) {
// alert("chk_grid_" + (record[0].Sr_No - 1).toString());
if (document.getElementById("chk_grid_" + (record[0].Sr_No).toString()).checked == true) {
document.getElementById("Txtconfirm" + (record[0].Sr_No - 1).toString()).value = record[0].Default_Allot;
}
else {
document.getElementById("Txtconfirm" + (record[0].Sr_No - 1).toString()).value = "";
}
}
function toggleSelection(checkbo ...
Go to the complete details ...