I am trying to run a customized version of the LinkManager dialog from my editor. Below is my implementation of the editor in my HTML:
When I click on the LinkManager button in the toolbar the dialog comes up but with the following error message:
Parser Error Message: Unknown server tag 'tools:StandardButton'.
This error occurs in LinkManager.ascx, line 507:
The "tools" prefix is registered as:
However, after using the object browser and reflector, I can find no "StandardButton" implementation in the Telerik.Web.UI dll, much less in the Telerik.Web.UI.Editor namespace. Am I missing a reference somewhere or is the StandardButton control depreciated in favor of something else?
Thanks very much for the help.
| <tlk:RadEditor runat="server" ID="tlkEditor" ToolsFile="~/radcontrols/editor/ToolsFile.xml" ExternalDialogsPath="~/radcontrols/editor/dialogs/" Skin="Office2007" Width="600" EditModes="Design" OnClientLoad="OnClientLoad"> |
| ... |
| </tlk:RadEditor> |
When I click on the LinkManager button in the toolbar the dialog comes up but with the following error message:
Parser Error Message: Unknown server tag 'tools:StandardButton'.
This error occurs in LinkManager.ascx, line 507:
| <tools:StandardButton runat="server" id="DocumentManager" Name="DocumentManager"> |
| </tools:StandardButton> |
The "tools" prefix is registered as:
| <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI.Editor" TagPrefix="tools" %> |
However, after using the object browser and reflector, I can find no "StandardButton" implementation in the Telerik.Web.UI dll, much less in the Telerik.Web.UI.Editor namespace. Am I missing a reference somewhere or is the StandardButton control depreciated in favor of something else?
Thanks very much for the help.