This question is locked. New answers and comments are not allowed.
Hi,
In application I have GridView, which contains some columns
I want to do this,
For example, if is selected GridViewCheckBoxColumn, when the last GridViewDataColumn property IsReadOnly set to true, and if not selected, when property IsReadOnly set to false. (If checkbox is selected, I can edit GridViewdataColumn, if not selected, can't edit)
Maybe somebody know, how can I do it?
Thanks,
Jara
In application I have GridView, which contains some columns
<telerik:GridViewDataColumn DataMemberBinding="{Binding RowNumber}" Header="" />
<telerik:GridViewDataColumn DataMemberBinding="{Binding RowName}" Header="Turtas" Width="*" />
<telerik:GridViewCheckBoxColumn DataMemberBinding="{Binding IsCalculatedByFormula}" Header="" />
<telerik:GridViewDataColumn DataMemberBinding="{Binding CalculationFormula}" Header="Formule" Width="100" IsReadOnly="{Binding IsCalculatedByFormula}" />
I want to do this,
For example, if is selected GridViewCheckBoxColumn, when the last GridViewDataColumn property IsReadOnly set to true, and if not selected, when property IsReadOnly set to false. (If checkbox is selected, I can edit GridViewdataColumn, if not selected, can't edit)
Maybe somebody know, how can I do it?
Thanks,
Jara