tinymce.PluginManager.add('linkinsert', function(editor, url) { // Add a button that opens a window editor.addButton('linkinsert', { text: 'Odkázat na jinou stránku', icon: false, onclick: function() { // Open window editor.windowManager.open({ title: 'Odkázat na jinou stránku', body: [ {type: 'textbox', name: 'textod', label: 'Text odkazu'}, {type: 'listbox', name: 'title', values: [{text: 'Škola', value: 'skola'}, {text: 'Uchazeči', value: 'uchazeci'}, {text: 'Maturanti', value: 'maturanti'}, {text: 'Akce', value: 'akce'}, {text: 'Dokumenty', value: 'dokumenty'}, {text: 'Kontakty', value: 'kontakty'}]} ], onsubmit: function(e) { // Insert content when the window form is submitted editor.insertContent('' + e.data.textod + ''); } }); } }); });