Opened 18 years ago

Last modified 17 years ago

#349 closed Bug

[FCKeditor Site] About "OpenFileBrowse" Function's bug in Maxthon browser — at Initial Version

Reported by: wang.seraph Owned by:
Priority: Normal Milestone: FCKeditor 2.6
Component: General Version:
Keywords: Cc:

Description

Hello,i'am a developer from China,and it's very thankful that you give

us so perfect editor.But in my development with it i found some functions may not work as what we want. When i use the editor(2.4.1) in Maxthon (2.0) Browser,i open the image dialog and click the "Browse Server" Button,then the new window opend as a new tab in the browser while the image dialog still show on the top of the browser,which i have to close it if i want to choose some files in the opend browse server window.

Here is the way i change the function to solve this bug,hoping to give some suggestion to you:

/FckEditor/Editor/dialog/common/fck_dialog_common.js

function OpenFileBrowser (...) { .. at the bottom of the function

if(oEditor.FCKBrowserInfo.IsIE)

{

window.showModalDialog(url+"&rdm="+new

Date(),window,"status:false;dialogWidth:"+width+"px;dialogHeig ht:"+height+"px\"");

} else {

window.open( url, 'FCKBrowseWindow', sOptions ) ;

}

}

Of course we should change the place where works with this function,such as: fckeditor\editor\filemanager\browser\default\frmresourceslist.html

function OpenFile( fileUrl ) {

if( window.dialogArguments) {

window.dialogArguments.SetUrl( fileUrl ) ; window.close() ;

window.dialogArguments.focus() ;

} else {

window.top.opener.SetUrl( fileUrl ) ; window.top.close() ; window.top.opener.focus() ;

}

}

Also,we need to modify the function which recieves the folder name when we Create New Folder for the method "prompt" does'nt work in dialog mode.

As this,our editor now work normal in browser no matter it bases on IE or FireFox

Change History (0)

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