http://docs.cksource.com/CKEditor_3.x/D ... le_Browser
window.opener.CKEDITOR.tools.callFunction( funcNum, fileUrl, function() {
// Get the reference to a dialog window.
var element, dialog = this.getDialog();
// Check if this is the Image dialog window.
if (dialog.getName() == 'image') {
// Get the reference to a text field that holds the "alt" attribute.
element = dialog.getContentElement( 'info', 'txtAlt' );
// Assign the new value.
if ( element )
element.setValue( "alt text" );
}
});

Re: Custom File Browser - Example 4 problem on IE
Re: Custom File Browser - Example 4 problem on IE
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: Custom File Browser - Example 4 problem on IE
Katy
Re: Custom File Browser - Example 4 problem on IE
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: Custom File Browser - Example 4 problem on IE
http://dev.ckeditor.com/ticket/8288
Re: Custom File Browser - Example 4 problem on IE
If you comment the ticket, you will be automatically notified about any changes in this area.
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: Custom File Browser - Example 4 problem on IE