%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.26 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/var/www/html/old/plugins/editors/jckeditor/fields/ |
Upload File : |
/**
* @version $Id: modal.js 5263 2006-10-02 01:25:24Z webImagery $
* @copyright Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
/**
* JCombobox javascript behavior
*
* Used for transforming <input type="text" ... /> tags into combobox dropdowns with appropriate <noscript> tag following
* for dropdown list information
*
* @package Joomla
* @since 1.5
* @version 1.0
*/
var JComboboxParam = function() { this.constructor.apply(this, arguments);}
JComboboxParam.prototype = {
constructor: function()
{
var agt = navigator.userAgent.toLowerCase();
this.is_ie = (agt.indexOf("msie") != -1);
this.is_opera = (agt.indexOf("opera") != -1);
this.is_safari = (agt.indexOf("safari") != -1);
this.is_ie7 = (agt.indexOf("msie 7") != -1);
var boxes = document.getElements('.combobox');
for ( var i=0; i < boxes.length; i++) {
if (boxes[i].tagName == 'SELECT') {
this.initialize(boxes[i]);
}
}
},
initialize: function(element)
{
var textbox = null;
var name = element.name;
function getStyle(oElm, strCssRule){
var strValue = "";
if(document.defaultView && document.defaultView.getComputedStyle){
strValue = document.defaultView.getComputedStyle(oElm, "").getPropertyValue(strCssRule);
}
else if(oElm.currentStyle){
strCssRule = strCssRule.replace(/\-(\w)/g, function (strMatch, p1){
return p1.toUpperCase();
});
strValue = oElm.currentStyle[strCssRule];
}
return strValue;
}
if (this.is_ie)
{
try
{
textbox = document.createElement( "<input name='"+name+"'>" );
}
catch(e){}
}
if(!textbox)
{
textbox = document.createElement('input');
textbox.setAttribute('name',name);
}
textbox.setAttribute('type',"text");
textbox.setAttribute('id',element.id);
element.setAttribute('id','combobox-'+element.id+ '-select');
textbox.value = element.getAttribute('data-value') || '';
element.inputbox = textbox.id;
element.onchange = function(){ var input = document.getElementById(this.inputbox); input.value = this.options[this.selectedIndex].value; }
element.parentNode.insertBefore(textbox, element.nextSibling);
//margin-left
marginRight = getStyle(element,'margin-right');
marginRight = marginRight ? parseInt(marginRight) : 0;
elementWidth = element.offsetWidth;
if(!elementWidth)
{
if(!element.style.display || element.style.display != 'none')
elementWidth = 220;
}
console.log( element.style.display);
elementWidth = elementWidth + marginRight;
var coords = { x: elementWidth, y: 0 };
var widthOffset = 18;
var heightOffset = 4;
if(this.is_ie)
{
widthOffset = 22;
}
if(elementWidth == 220)
{
widthOffset = 43;
}
// Set text field properties based on the select box
textbox.style.position = 'relative';
textbox.style.top = coords.y + 'px';
textbox.style.right = coords.x + 'px';
textbox.style.width = elementWidth - widthOffset + 'px';
textbox.style.height = element.offsetHeight - heightOffset + 'px';
textbox.style.zIndex = 0;
}
}
document.combobox = null
window.addEvent('domready',function(){
var combobox = new JComboboxParam()
document.combobox = combobox
});