I don't know about 1.5.2, I'm still on 1.5.1. 1.5.1 with the Ektron 2.6 editor worked fine. Upgrading to the Ektron 3.0 editor replaced the cfa_htmleditor.cfm which caused the problem. I don't know if the cfa_htmleditor.cfm is the same one as 1.5.2.
Symptoms of the problem: 1) datasource and type info appear above the Editor window (since that's the only thing cfoutputted) 2) New Hyperlink button doesn't work (since the function is not cfoutputted.) Derek -----Original Message----- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 13, 2003 10:35 AM To: Spectra-Talk Subject: RE: Ektron editor 3.0 Spectra integration bug Are you saying the issue occurs just with _their_ code or is it partially a bug w/ the current editor in 1.5.2? ======================================================================= Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc Email : [EMAIL PROTECTED] WWW : www.camdenfamily.com/morpheus Yahoo IM : morpheus "My ally is the Force, and a powerful ally it is." - Yoda > -----Original Message----- > From: Derek Westfall [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 13, 2003 12:30 PM > To: Spectra-Talk > Subject: Ektron editor 3.0 Spectra integration bug > > > We just bought the upgrade for the Ektron editor. > > Maybe I'm behind the times but I've still got "cfsetting > enableoutputonly=yes/no" on just about every page. We're > running on CF5. > > Unfortunately this breaks the new Ektron editor 3.0 which > does not have proper cfoutputting in the cfa_htmleditor.cfm file. > > The javascript beginning on line 81 should be surrounded by > CFOUTPUTs instead of just cfoutputting the URL string. > > The javascript beginning on line 99 should be CFOUTPUTted as well. > > Broken code from cfa_htmleditor.cfm beginning with line 81: > > <script language="JavaScript1.2"> > function InsertHyperlink(name) { > PopUpWindow(eWebEditPro.parameters.path + > 'hyperlinkpopup.cfm?editorName=' + escape(name)+ > '&<cfoutput>#URLSTRING#</cfoutput>', 'HyperlinkList', 500, 300, 1); > } > function initTransferMethod(sEditor){ > var Transfer = eWebEditPro.parameters.path + > "imagepopup.cfm?<cfoutput>#URLSTRING#</cfoutput>"; > > eWebEditPro[sEditor].MediaFile().setProperty("TransferMethod", > Transfer); > } > </script> > > <CF_eWebEditPro3 > Name="#Attributes.webform#" > config="#Attributes.config#" > Width="#Attributes.nWidth#" > Height="#attributes.height#" > Value="#Attributes.HTML#" > Path="/allaire/spectra/ewebeditpro/" > > > <script language="JavaScript1.2"> > eWebEditPro.onready = > "initTransferMethod(eWebEditPro.event.srcName)"; > </script> > > > This works: > > <cfoutput> > <script language="JavaScript1.2"> > function InsertHyperlink(name) { > PopUpWindow(eWebEditPro.parameters.path + > 'hyperlinkpopup.cfm?editorName=' + escape(name)+ > '&#URLSTRING#', 'HyperlinkList', 500, 300, 1); > } > function initTransferMethod(sEditor){ > var Transfer = eWebEditPro.parameters.path + > "imagepopup.cfm?#URLSTRING#"; > > eWebEditPro[sEditor].MediaFile().setProperty("TransferMethod", > Transfer); > } > </script> > </cfoutput> > > <CF_eWebEditPro3 > Name="#Attributes.webform#" > config="#Attributes.config#" > Width="#Attributes.nWidth#" > Height="#attributes.height#" > Value="#Attributes.HTML#" > Path="/allaire/spectra/ewebeditpro/" > > > > <cfoutput> > <script language="JavaScript1.2"> > eWebEditPro.onready = > "initTransferMethod(eWebEditPro.event.srcName)"; > </script> > </cfoutput> > > > ______________________________________________________________________ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm ------------------------------------------------------------------------------ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/spectra_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
