Article information
Article relates to
RadToolTip for ASP.NET AJAX
Created by
Svetlina, Telerik
Last modified
Jan 20, 2012
Last modified by
HOW TO : Fine-tune the load on demand requests initiated by RadToolTipManager SOLUTION:
//flag variable which represents your condition
var
flag =
true
;
function
OnClientRequestStart(sender, args)
{
currentToolTip = Telerik.Web.UI.RadToolTip.getCurrent();
contentElement = currentToolTip.get_contentElement();
if
(flag)
args.set_cancel(
);
//the content element is null only before first show; in general //we should always have some content before cancelling subsequent request //because of the first request;
(contentElement)
currentToolTip.set_contentElement(contentElement);
}
Resources Buy Try