Hello,
I am trying to use a RadTimePicker with the InputMode property set to "DateTimePicker" inside a DataGrid column. I have the following XAML code:
However, the InputMode property seems to be ignored and the control is appearing as only a TimePicker. I have tested other properties and of the ones i tested, this is the only one that seems to be ignored.
Am i doing something wrong or is this a bug?
I am trying to use a RadTimePicker with the InputMode property set to "DateTimePicker" inside a DataGrid column. I have the following XAML code:
<DataGrid>... <DataGrid.Columns>... <DataGridTemplateColumn Header="ETA"> <DataGridTemplateColumn.CellTemplate> <DataTemplate> <telerik:RadTimePicker InputMode="DateTimePicker" SelectedValue="{Binding ETA}"/> </DataTemplate> </DataGridTemplateColumn.CellTemplate> </DataGridTemplateColumn>...</DataGrid.Columns>...</DataGrid>Am i doing something wrong or is this a bug?