I have a tiny MCE button but I’d like to make it open a modal window(like for the spellcheck). How do I go about doing this?

tinymce.create('tinymce.plugins.tinyplugin', {

        init : function(ed, url){
            ed.addButton('tinyplugin', {
            title : 'map',
                onclick : function() {
                   // make my pop up window?
                },
                image: url + "/icon.png"
            });
        }
    });

1
1

This works:

 tinymce.create('tinymce.plugins.tinyplugin', {

        init : function(ed, url){

            ed.addButton('tinyplugin', {
            title : 'map',
                onclick : function() {
                    tb_show("", "../wp-content/plugins/myplugin/test.php?");
                    tinymce.DOM.setStyle(["TB_overlay", "TB_window", "TB_load"], "z-index", "999999")
                },
                image: url + "/icon.png",

            });



        }
    });

The ? after the test.php is important or else the link will be broken.

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *