Opened 16 years ago

Closed 16 years ago

#1681 closed Bug (expired)

Error: -2147024809, Invalid Arguement when opening a 2nd editor in a popup

Reported by: CorpsusVitale Owned by:
Priority: Normal Milestone:
Component: General Version: FCKeditor 2.5
Keywords: Pending Cc:

Description

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.

Change History (3)

comment:1 Changed 16 years ago by Wojciech Olchawa

Keywords: Pending added

Could you please provide a minimum sample page where the bug occurs? Does the bug still exists in the current release? Please let us know.

Thanks

comment:2 Changed 16 years ago by Alfonso Martínez de Lizarrondo

Expired

comment:3 Changed 16 years ago by Frederico Caldeira Knabben

Resolution: expired
Status: newclosed
Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy