I am using Stylet as a MVVM framework. I can assign an action to the click event of the GroupViewItem as shown below:
<syncfusion:GroupViewItem Name="APUpdMulti"
Click="{s:Action APUpdMultiOpen}"
Text="Actualizar UUID - Masivo"/>
The action opens a window from my application, and when that window is closed I should be able to click on any other GroupViewItems to open the respective window. The problem is that if I immediately click again the same GroupViewItem the action is not triggered. I have to change the Focus of the selected GroupViewItem (by clicking a GroupView or another GroupViewItem) in order for the click event to respond again. If I click on a Menu Item, for example, this does not change the focus on the selected GroupViewItem, so if I click again the same GroupViewItem the action is ignored.
Thanks,