Completed
Last Updated: 17 Jul 2013 08:26 by ADMIN
ADMIN
Marin Bratanov
Created on: 24 Jun 2013 12:36
Category: Editor
Type: Bug Report
3
FIX After a partial postback, when showing a floating toolbar in RadEditor, a JavaScript error is thrown
Dispose a RadEditor with AJAX (ASP UpdatePanel, RadAjaxpanel, RadAjaxManager) and if you attempt to show a floating toolbar (i.e. all ToolbarMode options except Default and RibbonBar) a JS error is thrown.
There are two workarounds:
1) use ASP UpdatePanel with ChildrenAsTriggers=false and updateMode=Conditional
2) override several RadWindow methods to prevent the error (these scripts must be placed just before the closing </form> tag):
	<script type="text/javascript">
		Telerik.Web.UI.RadWindow.prototype._moveElementToShowOutOfView = function ()
		{
			if (this.view)
				this.view.moveOutOfSight();
		}

		Telerik.Web.UI.RadWindow.prototype.setVisible = function (toShow)
		{
			if (this.view)
			{
				if (toShow)
					this.view.show();
				else
					this.view.hide();
			}
		}
	</script>
0 comments