This question is locked. New answers and comments are not allowed.
Hi
When I am using "OriginalEvent" to display a column by setting the column's cell template. The column is rendered properly but when the task is selected the text of the column goes blank. I have attached a screenshot.
Regards,
Prolay
When I am using "OriginalEvent" to display a column by setting the column's cell template. The column is rendered properly but when the task is selected the text of the column goes blank. I have attached a screenshot.
<telerik:ColumnDefinition MemberBinding="{Binding EstimatedHours,Converter={StaticResource DurationConverter}, ConverterParameter=D}" Header="Est Hrs" ColumnWidth="50"> <telerik:ColumnDefinition.CellTemplate> <DataTemplate> <TextBlock TextAlignment="Right" VerticalAlignment="Center" Text="{Binding OriginalEvent.EstimatedHours,Converter={StaticResource DurationConverter}, ConverterParameter=D}"/> </DataTemplate> </telerik:ColumnDefinition.CellTemplate> <telerik:ColumnDefinition.CellEditTemplate> <DataTemplate> <telerik:RadMaskedTextBox x:Name="txtEstimatedHrs" Value="{Binding EstimatedHours,Mode=TwoWay}" Mask="n" MaskType="Numeric" /> </DataTemplate> </telerik:ColumnDefinition.CellEditTemplate></telerik:ColumnDefinition>Prolay