Hello,
How to implement next behaviour in attached example:
when user click at "Symbol" cells current item changed how it implemented by default. But when user click at checkbox current item not change.
For example we have two row "A" and "B" and CurrentItem point to "A", we click at checkbox at row "B" and CurrentItem stiil point to "A", we click to other cell at "B" and CurrentItem change to "B".
bmirzai said: when user click at "Symbol" cells current item changed how it implemented by default. But when user click at checkbox current item not change.
1. Click at 2 -At the top shows 2 on the TextBlock.
2. Click at checkbox in 1 row - At the top shows 1 on the TextBlock. But i want, that at textbox still show 2.
Binding to the ActiveDataItem updates on every field. To update the CurrentItem based on a certain field the CellActivated event handler contains parameters to get the field's name.
I have attached an updated sample that sets the CurrentItem on the Name field but not on IsSelected.