Hi, I have Telerik grid control, there I have an edit control like update and cancel buttons and so on.
The edit controls are shown automatically when I edit image click, no manual coding used to invoke the controls. Therefore my problem is I have to validate the input control when I update button click. The controls are created dynamically. So I used its client id value to make it functioning. But I could not do. I used the below code.
$('#RadGrid1_ctl00_ctl05_btnUpdate').click(function() {
alert("hai..Update Button");
//Here I have to validate input controls
});
-Thanks