Hi,
Is it possible to set some levels in the ganttview grid to readonly?
If we take the sample "Import from MS Project" as an example and says that we want OutlineLevel 1,2,3 to be readonly and OutlineLevel 4 as editabled. How do i do that?
Only thing that i have tested so far is to have a boolean property in my custom tasks class and then try to bind it to the control for the specific level:
<
telerik:ColumnDefinition
MemberBinding
=
"{Binding End_str}"
Header
=
"End"
ColumnWidth
=
"80"
>
<
telerik:ColumnDefinition.CellEditTemplate
>
<
DataTemplate
>
<
telerik:RadDatePicker
SelectedValue
=
"{Binding End,Mode=TwoWay}"
IsReadOnly
=
"{Binding isLevelReadOnly}"
/>
</
DataTemplate
>
</
telerik:ColumnDefinition.CellEditTemplate
>
</
telerik:ColumnDefinition
>