Posted 25 Oct 2011 Link to this post
<script type=
"text/javascript"
>
Telerik.Web.UI.RadDateInput.prototype.parseDate =
function
(value, baseDate)
{
if
(
new
Date(value) !=
"NaN"
)
return
Date(value);
this
.set_textBoxValue(value);
}
</script>
Posted 27 Jun 2012 Link to this post
<
script
type
=
Telerik.Web.UI.RadDateInput.prototype.parseDate = function (value, baseDate)
if (new Date(value) != "NaN") {
return new Date(value);
this.set_textBoxValue(value); }
</
Posted 28 Jun 2012 Link to this post