I want to make few rows editable based on a flag in the model class binding in the collection. what property in the grid control should I bind it with using DataTrigger?
I tried this but does work.
<Style TargetType="syncfusion:GridCell">
<Style.Triggers>
<DataTrigger Binding="{Binding Path=IsEnableEdit}" Value="True">
<Setter Property="InputMethod.IsInputMethodEnabled" Value="True"/>
</DataTrigger>
</Style.Triggers>
</Style>