Hi, I have a data set that contains some elements that are editable/deletable and others that are not. I am displaying these elements using the SfDataGrid. I've enabled swiping and have left and right swipe working. However, its working on all the rows. Is there a way of specifying which rows in the grid should allow swiping?
The best I have manged so far is to make the content of the SwipeTemplate DataTemplate bind IsVisible to the row data so that when the readonly row is swiped there is nothing displayed in the swipe area but the row still swipes.
Ideally I'd like for the read only rows not to swipe at all.
Something along the lines of a QuerySwiping event with a cancel property would do what I need.
Thanks