views:

461

answers:

0

The short version is that I have nested FormViews. I would like the child FormView to only change modes when the parent does so as well, so I handle the ParentFV.ModeChanging event and call ChildFV.ChangeMode within that...

For some reason, the Child FormView's mode doesn't change... nore does the Child's ModeChanging event appear to get fired...

Why would this not work?

EDIT: I came up with a workaround, hooking the Inserted and Updated events and using the KeepIn*Mode to prevent them from going back too early... setting the mode itself on page_load according to the current DynamicData mode...