Your IP : 216.73.216.209


Current Path : /home/megadansyp/www/administrator/components/com_jevents/assets/js/
Upload File :
Current File : /home/megadansyp/www/administrator/components/com_jevents/assets/js/editdefaultsJQ.js

// JQuery version

defaultsEditorPlugin = {
    update: function (pluginName) {
        var pluginNode = jevjq(pluginName);
        while (pluginNode.firstChild) {
            pluginNode.removeChild(pluginNode.firstChild);
        }
        jevjq(pluginNode).trigger("chosen:updated");
        jevjq(pluginNode).trigger("liszt:updated");
    },
    optgroup: function (pluginNode, label) {
        var group = jevjq("<optgroup/>", {'label': label})
        jevjq(pluginNode).append(group);
        jevjq(pluginNode).trigger("chosen:updated");
        jevjq(pluginNode).trigger("liszt:updated");
        return group;
    },
    node: function (parent, label, value) {
        var optnode = jevjq('<option value="' + label + ":" + value + '">' + label + '</option>');
        jevjq(parent).append(optnode);
        jevjq(parent).trigger("chosen:updated");
        jevjq(parent).trigger("liszt:updated");
    },
    insert: function (fieldName, pluginNode) {
        var sel = jevjq("#" + pluginNode + " option:selected");

        // Bail if the selectedIndex is 0 (as this is the 'Select...' option)
        if (jevjq("#" + pluginNode).selectedIndex == 0) return true;

        // MSIE 8 problem with mootools plugin enabled!
        var textToInsert = '{{' + sel.val() + '}}';

        // insert the text using the library code
        // @deprecated 4.0 Use directly Joomla.editors.instances[editor].replaceSelection(text);
        // $result = jInsertEditorText(textToInsert, fieldName);
        Joomla.editors.instances[fieldName].replaceSelection(textToInsert);


        // reset the selected element back to 'Select...'
        jevjq(pluginNode).selectedIndex = 0;
        // needed for MSIE 9 bug - see jevjq(pluginNode)
        sel.each(function (index, selel) {
            jQuery(selel).attr('selected', false);
        });
        return false;
    },

    inject: function (fieldName, textToInsert) {

        // clear the current value
        try {
            Joomla.editors.instances[fieldName].setValue('');
        }
        catch (e)
        {
            try {
                document.getElementById(fieldName).value = '';
            }
            catch (e)
            {

            }
        }
        // insert the text using the library code
        Joomla.editors.instances[fieldName].replaceSelection(textToInsert);
        return false;
    },
    extract: function (fieldName) {

        // insert the text using the library code
        try {
            return Joomla.editors.instances[fieldName].getValue();
        }
        catch (e)
        {
            try {
                return document.getElementById(fieldName).value;
            }
            catch (e)
            {

            }
        }
        return '';
    }


}