Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
by some content is shown to the user when he places the mouse cursor on top of a given element or text (mouse over). Could you please tell the way to adding tool tip to editor. Thanks, Uma
function
OnClientLoad(editor, args) {
var
element = document.all ? editor.get_document().body : editor.get_document();
$telerik.addExternalHandler(element,
"mouseover"
,
(e) {
contentAreaIframe = editor.get_contentAreaElement();
tooltip = $find(
"<%=RadToolTip1.ClientID%>"
);
tooltip.set_targetControl(contentAreaIframe);
setTimeout(
() {
tooltip.show();
}, 20);
});
}