﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1681	Error: -2147024809, Invalid Arguement when opening a 2nd editor in a popup	CorpsusVitale		"I have an editor placed inline in a registration form. It has a nearly empty toolbar with only B,U,I buttons. I have added another button which opens a new editor in a modal dialog. After opening of the new editor in the dialog, i am getting an error -2147024809, Invalid Arguement. 

The error occurs at:


{{{
FCKEvents.prototype.FireEvent = function( eventName, params )
{
	var bReturnValue = true ;

	var oCalls = this._RegisteredEvents[ eventName ] ;

	if ( oCalls )
	{
		for ( var i = 0 ; i < oCalls.length ; i++ )
		{
			try
			{
				bReturnValue = ( oCalls[ i ]( this.Owner, params ) && bReturnValue ) ;
			}
			catch(e)
			{
				// Ignore the following error. It may happen if pointing to a
				// script not anymore available (#934):
				// -2146823277 = Can't execute code from a freed script
				if ( e.number != -2146823277 )
					throw e ;
			}
		}
	}

	return bReturnValue ;
}
}}}

The function that is being tried to execute here is: FCKToolbarSet.prototype.RefreshItemsState

I am using IE 6.0. The problem doesnt occur on Firefox 2.0.

If you need more info, I'll be glad to provide it."	Bug	closed	Normal		General	FCKeditor 2.5	expired	Pending	
