Hi everybody!
I would like to add an iFrame to a Dialog but it does not work at all!
My code is:
CKEDITOR.dialog.add( 'galerie', function ( editor ) {
return {
title: 'Eine Bildergalerie einfügen',
minWidth: 400,
minHeight: 100,contents: [
{
id: 'tab-settings',
label: 'Advanced Settings',
elements: [
{
type: 'text',
id: 'galerieID',
style: 'display: nofne;',
validate: CKEDITOR.dialog.validate.notEmpty( "Du hast keine Bildergalerie ausgewählt!" ),
onChange: function()
{
alert("Geändert!");
}
},
{
type: 'hbox',
align: 'center',
children: [
{
type: 'html',
id: 'galerieShow',
html: '<div style="line-height: 23px">Noch keine Bildergalerie ausgewählt</div>'
},
{
type: 'button',
id: 'galerieAuswaehlen',
label: 'Auswählen',
onClick: function()
{
}
}
]
},
{
type: 'hbox',
align: 'center',
children: [
{
type: 'text',
label: 'Breite:',
id: 'galerieBreite',
},
{
type: 'text',
label: 'Höhe:',
id: 'galerieHoehe',
}
]
},
]
},
{
id: 'tab-auswahl',
label: 'Bildergalerieen',
elements: [
// IFRAME SHOULD BE HERE
]
}
]
};
})
What do i have to do? Thanks for your help!
Yannik