Hi Johannes,
Partial detail of the modifications:
The bug is because the substring function is wrote wrong at piece code (The behavior of substring function is different in JS to C# ) :
…
, AutoFormatTime : function()
{
…
if (this._AutoCompleteValue != "" )
{
Mcur = this._AutoCompleteValue.substring(3,2); <---
// replace to this._AutoCompleteValue.substring(3,5)
}
…
if (this._maskvalid == "99" + this.get_CultureTimePlaceholder()…
{
if (this._AutoCompleteValue != "" )
{
Scur = this._AutoCompleteValue.substring(5); <-----
// replace to this._AutoCompleteValue.substring(6);
}
I fixed the bug at
http://www.codeplex.com/AtlasControlToolkit/SourceControl/DownloadSourceCode.aspx?changeSetId=19659 befor my answer to you