| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328 |
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <title>下拉菜单</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
- <meta name="generator" content="www.leipi.org"/>
- <link rel="stylesheet" href="bootstrap/css/bootstrap.css">
- <!--[if lte IE 6]>
- <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap-ie6.css">
- <![endif]-->
- <!--[if lte IE 7]>
- <link rel="stylesheet" type="text/css" href="bootstrap/css/ie.css">
- <![endif]-->
- <link rel="stylesheet" href="leipi.style.css">
- <script type="text/javascript" src="../dialogs/internal.js"></script>
- <script type="text/javascript">
- function createElement(type, name) {
- var element = null;
- try {
- element = document.createElement('<' + type + ' name="' + name + '">');
- } catch (e) {
- }
- if (element == null) {
- element = document.createElement(type);
- element.name = name;
- }
- return element;
- }
- function fnSelect(combo) {
- var iIndex = combo.selectedIndex;
- oListText.selectedIndex = iIndex;
- var olistText = document.getElementById("orgtext");
- olistText.value = oListText.value;
- }
- function fnAdd() {
- var olistText = document.getElementById("orgtext");
- fnAddComboOption(oListText, olistText.value, olistText.value);
- oListText.selectedIndex = oListText.options.length - 1;
- olistText.value = '';
- olistText.focus();
- }
- function fnModify() {
- var iIndex = oListText.selectedIndex;
- if (iIndex < 0) return;
- var olistText = document.getElementById("orgtext");
- oListText.options[iIndex].innerHTML = fnHTMLEncode(olistText.value);
- oListText.options[iIndex].value = olistText.value;
- olistText.value = '';
- olistText.focus();
- }
- function fnMove(steps) {
- fnChangeOptionPosition(oListText, steps);
- }
- function fnDelete() {
- fnRemoveSelectedOptions(oListText);
- }
- function fnSetSelectedValue() {
- var iIndex = oListText.selectedIndex;
- if (iIndex < 0) return;
- var olistText = document.getElementById("orgvalue");
- olistText.innerHTML = oListText.options[iIndex].value;
- }
- // Moves the selected option by a number of steps (also negative)
- function fnChangeOptionPosition(combo, steps) {
- var iActualIndex = combo.selectedIndex;
- if (iActualIndex < 0) {
- return;
- }
- var iFinalIndex = iActualIndex + steps;
- if (iFinalIndex < 0) {
- iFinalIndex = 0;
- }
- if (iFinalIndex > (combo.options.length - 1)) {
- iFinalIndex = combo.options.length - 1;
- }
- if (iActualIndex == iFinalIndex) {
- return;
- }
- var oOption = combo.options[iActualIndex];
- if (oOption.value == "") {
- var sText = fnHTMLDecode(oOption.value);
- } else {
- var sText = fnHTMLDecode(oOption.innerHTML);
- }
- combo.remove(iActualIndex);
- oOption = fnAddComboOption(combo, sText, sText, null, iFinalIndex);
- oOption.selected = true;
- }
- // Remove all selected options from a SELECT object
- function fnRemoveSelectedOptions(combo) {
- // Save the selected index
- var iSelectedIndex = combo.selectedIndex;
- var oOptions = combo.options;
- // Remove all selected options
- for (var i = oOptions.length - 1; i >= 0; i--) {
- if (oOptions[i].selected) combo.remove(i);
- }
- // Reset the selection based on the original selected index
- if (combo.options.length > 0) {
- if (iSelectedIndex >= combo.options.length) iSelectedIndex = combo.options.length - 1;
- combo.selectedIndex = iSelectedIndex;
- }
- }
- // Add a new option to a SELECT object (combo or list)
- function fnAddComboOption(combo, optionText, optionValue, documentObject, index) {
- var oOption;
- if (documentObject) {
- oOption = documentObject.createElement("option");
- } else {
- oOption = document.createElement("option");
- }
- if (index != null) {
- combo.options.add(oOption, index);
- } else {
- combo.options.add(oOption);
- }
- oOption.innerHTML = optionText.length > 0 ? fnHTMLEncode(optionText) : ' ';
- oOption.value = optionValue;
- return oOption;
- }
- function fnHTMLEncode(text) {
- if (!text) {
- return '';
- }
- text = text.replace(/&/g, '&');
- text = text.replace(/</g, '<');
- text = text.replace(/>/g, '>');
- return text;
- }
- function fnHTMLDecode(text) {
- if (!text) {
- return '';
- }
- text = text.replace(/>/g, '>');
- text = text.replace(/</g, '<');
- text = text.replace(/&/g, '&');
- return text;
- }
- function fnSetAttribute(element, attName, attValue) {
- if (attValue == null || attValue.length == 0) {
- element.removeAttribute(attName, 0);
- } else {
- element.setAttribute(attName, attValue, 0);
- }
- }
- </script>
- </head>
- <body>
- <div class="content">
- <table class="table table-bordered table-striped table-hover">
- <tr>
- <th><span>控件名称</span><span class="label label-important">*</span></th>
- <th><span>控件样式</span></th>
- </tr>
- <tr>
- <td><input id="orgname" placeholder="必填项" type="text"/></td>
- <td> 宽:<input id="orgwidth" type="text" value="150" class="input-small span1"/> px 高:<input
- id="orgsize" type="text" class="input-small span1" value="1"/> 行
- </td>
- </tr>
- <tr style="display: none;">
- <th>
- <span>关联子菜单名称</span> <a id="showTips"
- data-content="若关联子菜单,需要子下拉菜单设置的时候在每个选项后加上特殊标记以记录与父菜单关系,形如“子菜单项目|父菜单项目”,则父菜单发生变化,子菜单会随之自动刷新筛选"
- rel="popover" data-original-title="说明"><i class="icon-info-sign"></i></a></th>
- <td><input id="orgChild" type="text" size="20"></td>
- </tr>
- <tr>
- <th><span class="pull-right">初始选定</span></th>
- <td><span id="orgvalue" class="uneditable-input" style="height:20px;"></span></td>
- </tr>
- <tr>
- <th colspan="2">
- <span>列表值</span> <span class="label label-important">*</span>
- </th>
- </tr>
- <tr>
- <td colspan="2">
- <select id="orglist" multiple="multiple" class="span14"></select>
- </td>
- </tr>
- <tr>
- <td>
- <div class="btn-group pull-right">
- <a title="新增" onclick="fnAdd();" class="btn btn-primary"><i class="icon-white icon-plus"></i></a>
- <a title="修改" onclick="fnModify();" class="btn btn-default"><i class="icon-edit"></i></a>
- </div>
- <input type="text" placeholder="输入列表值..." class="span2" id="orgtext">
- </td>
- <td>
- <div class="btn-group">
- <button title="上移" onclick="fnMove(-1);" class="btn btn-default"><i class="icon-arrow-up"></i>
- </button>
- <button title="下移" onclick="fnMove(1);" class="btn btn-default"><i class="icon-arrow-down"></i>
- </button>
- <button title="设为初始化时选定值" onclick="fnSetSelectedValue();" class="btn btn-default"><i
- class="icon-ok-circle"></i></button>
- <button title="删除" onclick="fnDelete();" class="btn btn-default"><i class="icon-ban-circle"></i>
- </button>
- </div>
- </td>
- </tr>
- </table>
- </div>
- <script type="text/javascript">
- var oNode = null, oListText = '', thePlugins = 'select';
- window.onload = function () {
- oListText = $G('orglist');
- if (UE.plugins[thePlugins].editdom) {
- oNode = UE.plugins[thePlugins].editdom;
- var gTitle = oNode.getAttribute('title').replace(/"/g, "\""), gWidth = oNode.getAttribute('orgwidth'),
- gSize = oNode.getAttribute('size');
- gTitle = gTitle == null ? '' : gTitle;
- $G('orgvalue').innerHTML = oNode.value;
- $G('orgname').value = gTitle;
- $G('orgsize').value = gSize;
- $G('orgwidth').value = gWidth;
- for (var i = 0; i < oNode.options.length; i++) {
- var sText = oNode.options[i].value;
- fnAddComboOption(oListText, sText, sText);
- }
- }
- /*$('#showTips').popover();*/
- }
- dialog.oncancel = function () {
- if (UE.plugins[thePlugins].editdom) {
- delete UE.plugins[thePlugins].editdom;
- }
- };
- dialog.onok = function () {
- if ($G('orgname').value == '') {
- alert('控件名称不能为空');
- return false;
- }
- if (oListText.options.length == 0) {
- alert('请添加下拉菜单选项!');
- return false;
- }
- var gSize = $G('orgsize').value;
- if (gSize == null || isNaN(gSize) || gSize < 1) {
- gSize = '';
- }
- var gWidth = $G('orgwidth').value;
- if (!oNode) {
- try {
- //oNode = document.createElement("select");
- oNode = createElement('select', 'leipiNewField');
- oNode.setAttribute('title', $G('orgname').value);
- oNode.setAttribute('leipiPlugins', thePlugins);
- oNode.setAttribute('size', gSize);
- if ($G('orgwidth').value != '') {
- oNode.style.width = $G('orgwidth').value + 'px';
- //oNode.setAttribute('style','width:'+ $G('orgwidth').value + 'px;');
- }
- if (gWidth != '') {
- oNode.style.width = gWidth + 'px';
- oNode.setAttribute('orgwidth', gWidth);
- }
- // Add all available options.
- for (var i = 0; i < oListText.options.length; i++) {
- var sText = oListText.options[i].value;
- if (sText.length == 0) {
- sText = sText;
- }
- var oOption = fnAddComboOption(oNode, sText, sText);
- if (sText == $G('orgvalue').innerHTML) {
- fnSetAttribute(oOption, 'selected', 'selected');
- oOption.selected = true;
- }
- }
- //firefox要利用span
- editor.execCommand('insertHtml', '{|-<span leipiplugins="select">' + oNode.outerHTML + ' </span>-|}');
- return true;
- } catch (e) {
- try {
- editor.execCommand('error');
- } catch (e) {
- alert('控件异常,请到 [雷劈网] 反馈或寻求帮助!');
- }
- return false;
- }
- } else {
- oNode.setAttribute('title', $G('orgname').value);
- oNode.setAttribute('size', gSize);
- if (gWidth != '') {
- oNode.style.width = gWidth + 'px';
- oNode.setAttribute('orgwidth', gWidth);
- }
- // Remove all options.
- while (oNode.options.length > 0) {
- oNode.remove(0);
- }
- for (var i = 0; i < $G('orglist').options.length; i++) {
- var sText = $G('orglist').options[i].value;
- if (sText.length == 0) {
- sText = sText;
- }
- var oOption = fnAddComboOption(oNode, sText, sText);
- if (sText == $G('orgvalue').innerHTML) {
- fnSetAttribute(oOption, 'selected', 'selected');
- oOption.selected = true;
- }
- }
- delete UE.plugins[thePlugins].editdom;
- }
- };
- </script>
- </body>
- </html>
|