Completed
Last Updated: 24 Jun 2014 08:50 by ADMIN
ADMIN
Dobromir
Created on: 23 Jun 2014 08:48
Category: UI for ASP.NET AJAX
Type: Feature Request
2
FIX: Button single click gets disabled permanently if required field validator error is detected
Button single click becomes disabled permanently if a validation error is detected. After satisfying the validator conditions the button doesn't get enabled and it is not possible to post back the page.
2 comments
ADMIN
Misho
Posted on: 24 Jun 2014 08:49
The issue is resolved and the fix will be available in the next Service Pack Q2 2014 SP1 scheduled for mid of July as well in the next internal build.
ADMIN
Misho
Posted on: 24 Jun 2014 08:48
As a workaround you can use the following JavaScript overwrite:

 var oldSingleClickedFunction = Telerik.Web.UI.Button.SingleClickFunctionality.prototype.clicked;
               Telerik.Web.UI.Button.SingleClickFunctionality.prototype.clicked = function (args) {
                   if (this.options.controlState.validationResult)
                       return oldSingleClickedFunction.call(this, args);
                   else
                       return this.base.clicked(args);
               }