Hi John,
I created a new WebForm and dropped the new RadDateInput (Prometheus) on it, setting the dateformat and displaydateformat to H:mm.
Inserting 1100 leads to an invalid datetime.
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
|
<html xmlns="http://www.w3.org/1999/xhtml" > |
<head runat="server"> |
<title>Test RadDateInput</title> |
</head> |
<body> |
<form id="form1" runat="server"> |
<div> |
<asp:ScriptManager ID="ScriptManager1" runat="server"> |
</asp:ScriptManager> |
<telerik:RadDateInput ID="RadDateInput1" runat="server" Culture="(Default)" DateFormat="H:mm" DisplayDateFormat="H:mm"> |
</telerik:RadDateInput> |
|
</div> |
</form> |
</body> |
</html> |
On the next webform, I did exactly the same, but now using the "old" dateinput from RadControls for ASP.NET. Here, inserting 1100 gives a correct input (is changed by the control to 11:00).
<%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" %> |
|
<html xmlns="http://www.w3.org/1999/xhtml" > |
<head runat="server"> |
<title>Test RadDateInput old</title> |
</head> |
<body> |
<form id="form1" runat="server"> |
<div> |
<radi:raddateinput id="RadDateInput1" runat="server" dateformat="H:mm" displaydateformat="H:mm"></radi:raddateinput> |
|
</div> |
</form> |
</body> |
</html> |
Kind regards,
Martine.