Opened 14 years ago
Closed 14 years ago
#6589 closed New Feature (fixed)
Make it easier to use iframeDialog
Reported by: | Alfonso Martínez de Lizarrondo | Owned by: | Alfonso Martínez de Lizarrondo |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 3.6 |
Component: | UI : Dialogs | Version: | |
Keywords: | Cc: |
Description (last modified by )
Currently is not too easy to use the iframeDialog, specially the part about getting the current editor or listening to the dialog events.
The few resources available show The proposal here is to ignore the CKEDITOR.dialog.addIframe and do that work again http://cksource.com/forums/viewtopic.php?f=11&t=16040 This page explains the basic usage, but again, it seems that it's extra work http://www.tommed.co.uk/?p=31
My proposal is to make the CKEDITOR.dialog.addIframe create automatically a function that will notify the inner window of the dialog events (load, ok and cancel), so the only requirement to specify a dialog are two lines, almost like any other dialog:
editor.addCommand( 'myPlugin', new CKEDITOR.dialogCommand( 'myPlugin' ) ); CKEDITOR.dialog.addIframe( 'myPlugin', "Plugin title", this.path + 'popup.html', 700, 470);
And adding a simple function in the iframe:
// Gets notified of events in the main dialog function onDialogEvent( e ) { switch(e.name) { case 'load': oEditor = e.editor; init(); break; case 'ok': Ok(); break; case 'cancel': break; } }
The patch also includes the #5745 proposal so that way it's possible to alter the default buttons or other behavior in the dialog definition.
Attachments (1)
Change History (8)
Changed 14 years ago by
Attachment: | 6589.patch added |
---|
comment:1 Changed 14 years ago by
Description: | modified (diff) |
---|---|
Status: | new → review |
comment:2 Changed 14 years ago by
Milestone: | → CKEditor 3.6 |
---|
comment:3 Changed 14 years ago by
Status: | review → review_failed |
---|
The proposal is a good move, while I wonder if it the level of flexibility is really enough, e.g. it's still impossible to manipulate other dialog fields from within the iframe, I think it's better to just pass in the "dialog" reference, leaving other options to the end developers.
comment:4 Changed 14 years ago by
Another important usability issue is #5541, which is right not working for defined "height".
comment:5 Changed 14 years ago by
Status: | review_failed → review |
---|
This ticket is about iframeDialogs (all the content is a single iframe), not about a normal dialog where there are several elements and one of them is an iframe.
comment:7 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | review_passed → closed |
Fixed with [6677]
Proposed patch