Hello,
we have the following problem on a radgridview that is bound to an observable collection of entities (entities of EF class):
After binding the collection to the grid the date is shown with its time portion just as expected. Problem is, when setting / edting the date (either manual or via the picker) the time is being re-set to 00:00:00, which can't be changed. When manually trying to specify the time it is again re-set to 00:00:00. Is there a way to edit the time portion as well, i.e. to set the time somehow (this feature would be crucial for us!!!!).
Our xaml is pretty standard:
I tried a couple of things including adding a timespan property to our EF class to circumvent the issue, but I have given up now (spend already 2 days on this).
Please advise....
Regards...
M
we have the following problem on a radgridview that is bound to an observable collection of entities (entities of EF class):
After binding the collection to the grid the date is shown with its time portion just as expected. Problem is, when setting / edting the date (either manual or via the picker) the time is being re-set to 00:00:00, which can't be changed. When manually trying to specify the time it is again re-set to 00:00:00. Is there a way to edit the time portion as well, i.e. to set the time somehow (this feature would be crucial for us!!!!).
Our xaml is pretty standard:
<telerik:RadGridView x:Name="radBerthingSlots" |
AutoGenerateColumns="False" |
MaxHeight="500" |
IsEnabled="True" |
ItemsSource="{Binding BerthingSlots}"> |
<telerik:RadGridView.Columns> |
<telerik:GridViewDataColumn Header="High Tide Date" DataMemberBinding="{Binding HighTideDate}" /> |
</telerik:RadGridView.Columns> |
</telerik:RadGridView> |
I tried a couple of things including adding a timespan property to our EF class to circumvent the issue, but I have given up now (spend already 2 days on this).
Please advise....
Regards...
M