Urgent need:Onrowediting of Childgrid inside parent grid
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
In my project, onrowEditing is inside the childgrid. The parentgrid doesnot have onrowEditing.In this case, is it possible to find the id of childgrid inside onrowEditing method? Thanks in Advance
-
In my project, onrowEditing is inside the childgrid. The parentgrid doesnot have onrowEditing.In this case, is it possible to find the id of childgrid inside onrowEditing method? Thanks in Advance
I hope i understand you right. The row-editing event passes an object as first parameter, its usually named "sender". This is the grid raising that event. So you could cast that object to the type of your grid and do anything you want with it. You could also retrieve the id by using YourGrid.ClientID.