Hi All,
I am stuck with a problem in RadEditor and this is urgent.
I have used HyperlinkManager in RadEditor.
Is there a way to customize it, so that i can remove the apply-css option?
My problem is that it is fetching all the css-classes from the included css file, and
a css class like the one below is causing javascript error within the rad-editors javascript.
*
html iframe.loader-fix
{
position: absolute;
top:expression(eval(document.compatMode && document.compatMode=='CSS1Compat') ?
documentElement.scrollTop+((documentElement.clientHeight-this.clientHeight)/2 )
: document.body.scrollTop+((document.body.clientHeight-this.clientHeight)/2));
}
Any help is greatly appreciated. I am not getting any help related to this in the forums/documentation.
Thank & Regards,
Sachin
----------my aspx page------------------------------------------------------------------------
<%
@ Register TagPrefix="test" TagName="FolderExplorer" Src="~/Controls/SingleLevel.ascx" %>
<body>
......etc
<test:FolderExplorer ID="folderExplorer" runat="server" />
</body>
--------------------------------------------------------------------------------------------------
---------SingleLevel.ascx----------------------------------------------------------------------
<telerik:RadContextMenu ID="folderContextMenu" runat="server" MaxDataBindDepth="3">
<Targets>
<telerik:ContextMenuControlTarget ControlID="folderPanelBar" />
</Targets>
<CollapseAnimation Duration="200" Type="OutQuint" />
<Items>
..
</Items>
</telerik:RadContextMenu>
----------------------------------------------------------------------------------------------------
Inside SingleLevel.ascx, I have Teleric component with id called "folderContextMenu".
From my asp.net page using client side, I am able to find the component but it does not have all of the function that Telerik provided. I am clueless...any ideas?
var Folders = <%=((RadContextMenu) folderExplorer.FindControl("folderContextMenu")).ClientID %>;
but Folders does not have any Telerik methods??
Thanks for any feedbacks!
| THE FORM: |
| <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> |
| </telerik:RadScriptManager> |
| <asp:UpdatePanel ID="UpdatePanel2" runat="server"> |
| <ContentTemplate> |
| <telerik:RadTextBox ID="txtInput" runat="server"></telerik:RadTextBox><br /> |
| <asp:Button ID="bttnSend" runat="server" Onclick="bttnSend_Click"></asp:Button ><br /> |
| </ContentTemplate> |
| <Triggers> |
| <asp:AsyncPostBackTrigger ControlID="bttnSend" EventName="Click" /> |
| </Triggers> |
| </asp:UpdatePanel> |
| THE TOOLTIP: |
| <telerik:RadToolTip ID="pAttack" runat="server" ShowEvent="OnClick" Skin="Office2007" |
| TargetControlID="bttnAttack" Position="Center" RelativeTo="BrowserWindow" Title="Tấn công" |
| Modal="True" ShowDelay="100" ShowCallout="False" ManualClose="true"> |
| <asp:UpdatePanel ID="UpdatePanel1" runat="server"> |
| <ContentTemplate> |
| <asp:Label ID="lblConfirm" runat="server"></asp:Label> |
| </ContentTemplate> |
| </asp:UpdatePanel> |
| </telerik:RadToolTip> |
| SEND BUTTON ONCLICK EVENT: |
| protected void bttnSupport_Click(object sender, EventArgs e) |
| { |
| this. lblConfirm.Text = this. txtInput.Text; |
| } |
var
_168=this.getAppointmentDomElement(e.eventMapTarget);
var
_169=this.getAppointmentFromDomElement(_168);
var
_16a=(_169.get_allowDelete()!=null)?_169.get_allowDelete():this.get_allowDelete();
In the above code _169 is coming as Null..
Please help me out ..
For 2 days I am trying to overcome this but not able to do it..
Thanks
Archan