Hi
I use a couple of functions that you gave in the forum a while ago. They disable controls during callback.
function RequestStart(sender, args)
{
var ctrl = document.getElementById(args.EventTarget);
if (ctrl != null)
{
ctrl.disabled = true;
}
}
function ResponseEnd(sender, args)
{
var ctrl = document.getElementById(args.EventTarget);
if (ctrl != null)
{
ctrl.disabled = false;
}
}
AjaxManager:
<ClientEvents OnRequestStart="RequestStart" OnResponseEnd="ResponseEnd" />
...
Is this still the correct way to do it with the Prometheus controls?
And wouldn’t it be a nice thing to implement directly in the AjaxManager?
/Flemming Rosenbrandt