Ticket #1681 (closed Bug: expired)

Opened 2 years ago

Last modified 18 months ago

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

Changed 2 years ago by w.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

Changed 20 months ago by alfonsoml

Expired

Changed 18 months ago by fredck

  • status changed from new to closed
  • resolution set to expired
Note: See TracTickets for help on using tickets.