Hi I am having command buttons in my Grid like Insert,Update etc.. I customized the grid and add the buttons manually and place the ID's like btnInsert,btnUpdate and so on. The buttons are shown when i click Insert or Update image.
My issue is how can i call the event for the above buttons. I just want to validate inputs before the data is getting saved to DB.Since the buttons are inside the grid, I am finding difficult to call the button event. It is not coming fine. So let me know the possible ways to do so..
I used the below code: $('#btnUpdate').click(function(e)s { alert('checking the fun'); e.preventDefault(); });
I used also Update button's client id,
$('#RadGrid1_ctl00_ctl05_btnUpdate').click(function(e){ //Input validation });
-Thanks