Rank: Newbie Groups: Member
Joined: 3/31/2008 Posts: 4
|
Hi
I added 2 grid controls to my page. (grid1 and grid2). For grid1, I use Button column style. I try to load data to grid2 based on the grid1 button click. (diff row will have diff dataset) How do I do that? For regular gridview control, we can use rowDataBound and SelectedIndexChanged to handle this. I don't know how to do this for Essential Objects "Grid".
Thanks for help! Li Liu
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
ButtonColumn triggers ItemCommand event. So you will need to handle Grid1's ItemCommand event and do whatever you need to there (such as filling Grid2).
Thanks!
|