// JavaScript Document // Creates a new plugin class tinymce.create('tinymce.plugins.megatables', { createControl: function(n, cm) { switch (n) { case 'megatables': var mlb = cm.createListBox('box', { title : 'Tables Names', onselect : function(v) { switch(v) { } }, }); // Add some values to the list box // Return the new listbox instance return mlb; } return null; } }); // Register plugin tinymce.PluginManager.add('megatables', tinymce.plugins.megatables);