Hello,
I am using RadTimePicker for selecting time and on click of a button adding the selected time to a ListView.
When I select a time say 13:00:00 and click on add button, it gets added.
But when I select a time say 13:00:00 and edit it as say 13:10:00 and then click on add button it does not get added
This issue I get only while using version Q2 2014.
While the same control from Q3 2013 version works fine.
I see that when I select a time and I edit it and then Click on the add Button, the Time value is not getting bound to the property AtTime in ViewModel.
XAML :
< telerik:RadTimePicker x:Uid="uxAtTimePicker" x:Name="uxAtTimePicker" Width="203" VerticalAlignment="Center" SelectedTime="{Binding AtTime, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
ViewModel:
public TimeSpan? AtTime
{
get
{
return theAtTime;
}
set
{
theAtTime = value;
base.OnPropertyChanged("AtTime");
}
}
Please help me out with a solution.
Thanks,
Best Regards,
Santhosh B
I am using RadTimePicker for selecting time and on click of a button adding the selected time to a ListView.
When I select a time say 13:00:00 and click on add button, it gets added.
But when I select a time say 13:00:00 and edit it as say 13:10:00 and then click on add button it does not get added
This issue I get only while using version Q2 2014.
While the same control from Q3 2013 version works fine.
I see that when I select a time and I edit it and then Click on the add Button, the Time value is not getting bound to the property AtTime in ViewModel.
XAML :
< telerik:RadTimePicker x:Uid="uxAtTimePicker" x:Name="uxAtTimePicker" Width="203" VerticalAlignment="Center" SelectedTime="{Binding AtTime, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
ViewModel:
public TimeSpan? AtTime
{
get
{
return theAtTime;
}
set
{
theAtTime = value;
base.OnPropertyChanged("AtTime");
}
}
Please help me out with a solution.
Thanks,
Best Regards,
Santhosh B