Hi ,
I have a doubt regarding how to find the controls which are present in form template of radgrid in javascript function.
In my web page i have used radgrid and inside that i have used editform template. In form template i have used 5 radnumeric textbox controls. I have to take the value from these textbox and sum it and have to show it in another textbox named as "Total" . The value should be auto calculated. So, for this i am using client side event onBlur. But i am not able to find the controls of the textbox which is present inside the form template in javascript function. Kindly help me to get the values of radnumeric textbox in javascript function.
function test(sender, args) {
var editIndex = $find("<%=txtValue1.ClientID %>");
}
here txtValue1 is the ID of radnumeric textbox and i am getting null in editIndex.
Thanks
I have a doubt regarding how to find the controls which are present in form template of radgrid in javascript function.
In my web page i have used radgrid and inside that i have used editform template. In form template i have used 5 radnumeric textbox controls. I have to take the value from these textbox and sum it and have to show it in another textbox named as "Total" . The value should be auto calculated. So, for this i am using client side event onBlur. But i am not able to find the controls of the textbox which is present inside the form template in javascript function. Kindly help me to get the values of radnumeric textbox in javascript function.
function test(sender, args) {
var editIndex = $find("<%=txtValue1.ClientID %>");
}
here txtValue1 is the ID of radnumeric textbox and i am getting null in editIndex.
Thanks