Completed
Last Updated: 03 May 2016 14:09 by ADMIN
ADMIN
Danail Vasilev
Created on: 18 Feb 2016 11:00
Category: Editor
Type: Bug Report
0
E-mail Subject from HyperLinkManager dialog is not encoded
For the time being you can use the following workaround:
		<telerik:RadEditor ID="RadEditor1" runat="server" ></telerik:RadEditor>
		<script>
			var oldExecute = Telerik.Web.UI.Editor.InsertLinkCommand.prototype.onExecute;

			Telerik.Web.UI.Editor.InsertLinkCommand.prototype.onExecute = function () {
				this.linkProperties.href = encodeURI(this.linkProperties.href);
				oldExecute.call(this);
			}
		</script>
0 comments