Hi,
Is there a way to bind the readonly property of a column depending on a property value of the underlying dataobject?
eg:
the dataobject has the properties category A and category B. If category A has a certain value, let's say 1, the user is allowed to edit category B in the grid. Therefore the dataobject has a bool property called "has_category_A_value_1" which returns true if A equals 1:
<sldg:column FieldName="categoryA"/>
<sldg:column FieldName="categoryB" ReadOnly="{Binding has_category_A_value_1" />
if this kind of binding is not possible, is it possible to somehow tell the ActivatingCellEditor function not to show up the editcontrol?
thanks