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
80
SelectedItemsChanged and RecordActivated not playing along
posted

I'm playing around with the XamDataGrid and I've attached event handlers to the SelectedItemsChanged and RecordActivated events.

I've found that in some cases, just by clicking around and selecting rows at random I'm able raise the RecordActivated event, but not the SelectedItemsChanged event.

I'm using Infragistics3.Wpf.DataPresenter.v8.2 for my experimentation.

Is this the expected behaviour?

Parents
  • 69686
    posted

     Hello,

    Yes, this is normal, because of the CellClickAction property. You can change what you want to happen when the cell is clicked :

                <igDP:XamDataGrid.FieldSettings>
                    <igDP:FieldSettings CellClickAction="SelectRecord">
                </igDP:XamDataGrid.FieldSettings>

    Hope this helps,

    Alex. 

Reply Children