139 lines
4.4 KiB
JavaScript
139 lines
4.4 KiB
JavaScript
|
/**
|
|||
|
* $RCSfile: form_utils.js,v $
|
|||
|
* $Revision: 1.3 $
|
|||
|
* $Date: 2005/08/23 17:01:40 $
|
|||
|
*
|
|||
|
* Various form utilitiy functions.
|
|||
|
*
|
|||
|
* @author Moxiecode
|
|||
|
* @copyright Copyright <EFBFBD> 2005, Moxiecode Systems AB, All rights reserved.
|
|||
|
*/
|
|||
|
|
|||
|
function renderColorPicker(id, target_form_element) {
|
|||
|
var html = "";
|
|||
|
|
|||
|
html += '<a id="' + id + '_link" href="javascript:tinyMCEPopup.pickColor(event,\'' + target_form_element +'\');" onmousedown="return false;">';
|
|||
|
html += '<img id="' + id + '" src="../../themes/advanced/images/color.gif"';
|
|||
|
html += ' onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');"';
|
|||
|
html += ' onmouseout="tinyMCE.restoreClass(this);"';
|
|||
|
html += ' onmousedown="tinyMCE.restoreAndSwitchClass(this,\'mceButtonDown\');"';
|
|||
|
html += ' width="20" height="16" border="0" title="' + tinyMCE.getLang('lang_browse') + '"';
|
|||
|
html += ' class="mceButtonNormal" alt="' + tinyMCE.getLang('lang_browse') + '" /></a>';
|
|||
|
|
|||
|
document.write(html);
|
|||
|
}
|
|||
|
|
|||
|
function updateColor(img_id, form_element_id) {
|
|||
|
document.getElementById(img_id).style.backgroundColor = document.forms[0].elements[form_element_id].value;
|
|||
|
}
|
|||
|
|
|||
|
function setBrowserDisabled(id, state) {
|
|||
|
var img = document.getElementById(id);
|
|||
|
var lnk = document.getElementById(id + "_link");
|
|||
|
|
|||
|
if (lnk) {
|
|||
|
if (state) {
|
|||
|
lnk.setAttribute("realhref", lnk.getAttribute("href"));
|
|||
|
lnk.removeAttribute("href");
|
|||
|
tinyMCE.switchClass(img, 'mceButtonDisabled', true);
|
|||
|
} else {
|
|||
|
lnk.setAttribute("href", lnk.getAttribute("realhref"));
|
|||
|
tinyMCE.switchClass(img, 'mceButtonNormal', false);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function renderBrowser(id, target_form_element, type, prefix) {
|
|||
|
var option = prefix + "_" + type + "_browser_callback";
|
|||
|
var cb = tinyMCE.getParam(option, tinyMCE.getParam("file_browser_callback"));
|
|||
|
if (cb == null)
|
|||
|
return;
|
|||
|
|
|||
|
var html = "";
|
|||
|
|
|||
|
html += '<a id="' + id + '_link" href="javascript:openBrower(\'' + id + '\',\'' + target_form_element + '\', \'' + type + '\',\'' + option + '\');" onmousedown="return false;">';
|
|||
|
html += '<img id="' + id + '" src="../../themes/advanced/images/browse.gif"';
|
|||
|
html += ' onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');"';
|
|||
|
html += ' onmouseout="tinyMCE.restoreClass(this);"';
|
|||
|
html += ' onmousedown="tinyMCE.restoreAndSwitchClass(this,\'mceButtonDown\');"';
|
|||
|
html += ' width="20" height="18" border="0" title="' + tinyMCE.getLang('lang_browse') + '"';
|
|||
|
html += ' class="mceButtonNormal" alt="' + tinyMCE.getLang('lang_browse') + '" /></a>';
|
|||
|
|
|||
|
document.write(html);
|
|||
|
}
|
|||
|
|
|||
|
function openBrower(img_id, target_form_element, type, option) {
|
|||
|
var img = document.getElementById(img_id);
|
|||
|
|
|||
|
if (img.className != "mceButtonDisabled")
|
|||
|
tinyMCEPopup.openBrowser(target_form_element, type, option);
|
|||
|
}
|
|||
|
|
|||
|
function selectByValue(form_obj, field_name, value, add_custom) {
|
|||
|
if (!form_obj || !form_obj.elements[field_name])
|
|||
|
return;
|
|||
|
|
|||
|
var sel = form_obj.elements[field_name];
|
|||
|
|
|||
|
var found = false;
|
|||
|
for (var i=0; i<sel.options.length; i++) {
|
|||
|
var option = sel.options[i];
|
|||
|
|
|||
|
if (option.value == value) {
|
|||
|
option.selected = true;
|
|||
|
found = true;
|
|||
|
} else
|
|||
|
option.selected = false;
|
|||
|
}
|
|||
|
|
|||
|
if (!found && add_custom && value != '') {
|
|||
|
var option = new Option('Value: ' + value, value);
|
|||
|
option.selected = true;
|
|||
|
sel.options[sel.options.length] = option;
|
|||
|
}
|
|||
|
|
|||
|
return found;
|
|||
|
}
|
|||
|
|
|||
|
function getSelectValue(form_obj, field_name) {
|
|||
|
var elm = form_obj.elements[field_name];
|
|||
|
|
|||
|
if (elm == null || elm.options == null)
|
|||
|
return "";
|
|||
|
|
|||
|
return elm.options[elm.selectedIndex].value;
|
|||
|
}
|
|||
|
|
|||
|
function addClassesToList(list_id, specific_option) {
|
|||
|
// Setup class droplist
|
|||
|
var styleSelectElm = document.getElementById(list_id);
|
|||
|
var styles = tinyMCE.getParam('theme_advanced_styles', false);
|
|||
|
styles = tinyMCE.getParam(specific_option, styles);
|
|||
|
|
|||
|
if (styles) {
|
|||
|
var stylesAr = styles.split(';');
|
|||
|
|
|||
|
for (var i=0; i<stylesAr.length; i++) {
|
|||
|
if (stylesAr != "") {
|
|||
|
var key, value;
|
|||
|
|
|||
|
key = stylesAr[i].split('=')[0];
|
|||
|
value = stylesAr[i].split('=')[1];
|
|||
|
|
|||
|
styleSelectElm.options[styleSelectElm.length] = new Option(key, value);
|
|||
|
}
|
|||
|
}
|
|||
|
} else {
|
|||
|
// Use auto impored classes
|
|||
|
var csses = tinyMCE.getCSSClasses(tinyMCE.getWindowArg('editor_id'));
|
|||
|
for (var i=0; i<csses.length; i++)
|
|||
|
styleSelectElm.options[styleSelectElm.length] = new Option(csses[i], csses[i]);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function isVisible(element_id) {
|
|||
|
var elm = document.getElementById(element_id);
|
|||
|
|
|||
|
return elm && elm.style.display != "none";
|
|||
|
}
|