I have a js which onclick of checkbox will copy row value from one to another.
But my issue it is working anywhere when I click on gridview, but it should only when I check the checkbox.
Here is my code below:-
<script type="text/javascript">
function FunClickTest(record, rowIndex, cellIndex) {
document.getElementById("Txtconfirm" + (record[0].Sr_No - 1).toString()).value = record[0].Default_Allot;
}
</script>
<cc1:Grid ID="GrdConfirmation" EnableTypeValidation="true" runat="server" Width="100%"
ShowFooter="false" AllowAddingRecords="true" AllowSorting="false" AutoGenerateColumns="false"
Serialize="false" FolderStyle="Styles/Grid/style_12" CallbackMode="false">
<ClientSideEvents OnClientSelect="Fu ...
Go to the complete details ...