Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
8920
ActiveCellChanged event of the loaded on demand child grid not getting fired
posted
in the loaded on demand child gris I have the following lines in the RowIslandsPopulating event of the parent grid:
ContainerGrid IslandGrid = new ContainerGrid();
….............................................................................
…...............................................................................
IslandGrid.Behaviors.CreateBehavior<Activation>();
IslandGrid.Behaviors.Activation.ActiveCellChanged += new ActiveCellChangedEventHandler(IslandGrid_ActiveCellChanged);
       IslandGrid.Behaviors.Activation.AutoPostBackFlags.ActiveCellChanged = true;

the goal is to catch ActivCellChange event on the post back and do something..
Somehow on the postback  only ActiveCellChanged event of the parent grid get fired, but not the child.  What should be added to have ActiveCellChanged of the child grid get fired?
Thanks.