Is this grid on the summaryview created by the wizard? If so, I overrode the OnBindingContextChanged event in the view. I may have cheated here, but I set the bindingsource of my gridmanager to the bindingsource of my controlmanager. A hack, perhaps, but, at the moment, it works.
protected override void OnBindingContextChanged(System.EventArgs e)
{
base.OnBindingContextChanged(e);
mGridBindingManager.BindingSource = mControlBindingManager.BindingSource;
mGridBindingManager.BindingSource.ResetBindings(false);
}
Edited by Linguinut - 04-Oct-2007 at 2:18pm