In my timepicker whenever I edit values manually and try to save the changes and check it on the client side, it does not take the changed value and adheres to the previous value...
Am I missing some property here?
I am currently using this time picker:
Am I missing some property here?
I am currently using this time picker:
<
Rad:RadTimePicker ID="RadTimeClaimReported" EnableViewState="false" runat="server"
Width="85px" TabIndex="8" MinDate="1000-01-01" OnValueChanged="onDateTimeSelected" >
<DateInput runat="server" DateFormat="hh:mm tt" TabIndex="8" Width="80px" />
<ClientEvents OnPopupClosing="onDateTimeSelected" />
<TimeView runat="server" TimeFormat="hh:mm tt" TabIndex="8" />
<TimePopupButton TabIndex="8" />
</Rad:RadTimePicker>
onDateTimeSelected(sender, e)
{
var textbox = sender.get_dateInput();
if(textbox.get_enabled())
textbox.focus();
}
Regards
Arun