This question is locked. New answers and comments are not allowed.
how to make a row read only in radGridView through binding. Here is the Grid View I use. I have bind IsReadOnlyProperty. Which is in MemberList. But this does not take effect. Columns are dynamically binded.
<telerik:RadGridView ItemsSource="{MemberList,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" AutoGenerateColumns="False" CanUserSortColumns="False"IsFilteringAllowed="False" CanUserReorderColumns="False" SelectionMode="Single" SelectionUnit="FullRow" CanUserSelect="True" ShowGroupPanel="False"IsSynchronizedWithCurrentItem="False" RowIndicatorVisibility="Collapsed"IsReadOnly="{Binding IsRemoved}"> <ei:Interaction.Behaviors>
<commonViewModel:GridColumnsBindingBehavior Columns="{Binding Columns,Mode=TwoWay}"/>
</ei:Interaction.Behaviors>