or
<telerik:RadToolTip ID="radToolTipLogin" runat="server" ContentScrolling="Auto" TargetControlID="btnMore"HideEvent="ManualClose" Width="500px" Height="203px" RelativeTo="Element" Position="BottomCenter"EnableShadow="true" ShowEvent="OnClick" RenderInPageRoot="true"> <%# Eval("LOGIN") %></telerik:RadToolTip>$(".MyElem").fadeIn("fast", function () { try { this.style.removeAttribute("filter"); } catch (ex) { } });Telerik.Web.UI.Editor.CommandList[
"Schedule"] = function (commandName, editor, args) {
var selection = editor.getSelectionHtml();
//Remove all custom tags before insert new custom tags
var html = editor.get_html(true).replace("<ordredujour>", "");
html.replace(
"</ordredujour>", "");
var newhtml = html.replace(selection, '<ordredujour>' + selection + '</ordredujour>');
editor.set_html(newhtml);
}
I must remove old tag if old tag exist because i want only one <ordredujour> tag in all my html
My problem is that in HTML tab, I don't see my custom tag around selection. Do you know why ?

HtmlDocument document = HtmlPage.Document;document.SetProperty("title", "My Title");string title = "My Title";HtmlWindow top = HtmlPage.Window.GetProperty("top") as HtmlWindow;HtmlDocument htmlDoc = top.GetProperty("document") as HtmlDocument;htmlDoc.SetProperty("title", title);