While developing a small SL solution I have encountered the following issue: I have an EventTrigger of hooking the selected items inside the data grid. The problem is that the call to the correspondent item in VM fails occasionally. Is there any cure for this?

Code:

<i:Interaction.Triggers>
<i:EventTrigger EventName="SelectionChanged">
<cmd:EventToCommand
Command="{Binding SelectionChangedCommand}"
CommandParameter="{Binding SelectedItems,ElementName=dataGrid1}" />
</i:EventTrigger>
</i:Interaction.Triggers>
link|improve this question

67% accept rate
Does it work if you directly attach via an event handler? i.e. is The problem that the EventToCommand class that fails or is the event not raised at all in the scenario that interests you? Please also give additional info about the exact scenario you are testing this in (a fully working code sample that reproduces the issue would be best, of course). – Sander Jul 18 '11 at 10:36
1. Thanks for the response 2. It works with the event handler 3. I'm interested in the EventToCommand issue 4. I have a datagrid and trying to capture the selected row/s values to store them in the view model 5. Unfortunately I'm not able to share any full-working sample 6. I believe the issue is somehow linked to System.Windows.Interactivity .dll ... – user759141 Jul 21 '11 at 6:00
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.