1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
3
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
4
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
8
* Licensed under the terms of any of the following licenses at your
11
* - GNU General Public License Version 2 or later (the "GPL")
12
* http://www.gnu.org/licenses/gpl.html
14
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
15
* http://www.gnu.org/licenses/lgpl.html
17
* - Mozilla Public License Version 1.1 or later (the "MPL")
18
* http://www.mozilla.org/MPL/MPL-1.1.html
22
* Select dialog window.
26
<title>Select Properties</title>
27
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
28
<meta content="noindex, nofollow" name="robots">
29
<script src="common/fck_dialog_common.js" type="text/javascript"></script>
30
<script type="text/javascript" src="fck_select/fck_select.js"></script>
31
<script type="text/javascript">
33
var dialog = window.parent ;
34
var oEditor = dialog.InnerDialogLoaded() ;
36
// Gets the document DOM
37
var oDOM = oEditor.FCK.EditorDocument ;
39
var oActiveEl = dialog.Selection.GetSelectedElement() ;
44
window.onload = function()
46
// First of all, translate the dialog box texts
47
oEditor.FCKLanguageManager.TranslatePage(document) ;
49
oListText = document.getElementById( 'cmbText' ) ;
50
oListValue = document.getElementById( 'cmbValue' ) ;
52
// Fix the lists widths. (Bug #970)
53
oListText.style.width = oListText.offsetWidth ;
54
oListValue.style.width = oListValue.offsetWidth ;
56
if ( oActiveEl && oActiveEl.tagName == 'SELECT' )
58
GetE('txtName').value = oActiveEl.name ;
59
GetE('txtSelValue').value = oActiveEl.value ;
60
GetE('txtLines').value = GetAttribute( oActiveEl, 'size' ) ;
61
GetE('chkMultiple').checked = oActiveEl.multiple ;
63
// Load the actual options
64
for ( var i = 0 ; i < oActiveEl.options.length ; i++ )
66
var sText = HTMLDecode( oActiveEl.options[i].innerHTML ) ;
67
var sValue = oActiveEl.options[i].value ;
69
AddComboOption( oListText, sText, sText ) ;
70
AddComboOption( oListValue, sValue, sValue ) ;
76
dialog.SetOkButton( true ) ;
77
dialog.SetAutoSize( true ) ;
78
SelectField( 'txtName' ) ;
83
oEditor.FCKUndo.SaveUndoStep() ;
85
var sSize = GetE('txtLines').value ;
86
if ( sSize == null || isNaN( sSize ) || sSize <= 1 )
89
oActiveEl = CreateNamedElement( oEditor, oActiveEl, 'SELECT', {name: GetE('txtName').value} ) ;
91
SetAttribute( oActiveEl, 'size' , sSize ) ;
92
oActiveEl.multiple = ( sSize.length > 0 && GetE('chkMultiple').checked ) ;
94
// Remove all options.
95
while ( oActiveEl.options.length > 0 )
98
// Add all available options.
99
for ( var i = 0 ; i < oListText.options.length ; i++ )
101
var sText = oListText.options[i].value ;
102
var sValue = oListValue.options[i].value ;
103
if ( sValue.length == 0 ) sValue = sText ;
105
var oOption = AddComboOption( oActiveEl, sText, sValue, oDOM ) ;
107
if ( sValue == GetE('txtSelValue').value )
109
SetAttribute( oOption, 'selected', 'selected' ) ;
110
oOption.selected = true ;
119
<body style="overflow: hidden">
120
<table width="100%" height="100%">
125
<td nowrap><span fckLang="DlgSelectName">Name</span> </td>
126
<td width="100%" colSpan="2"><input id="txtName" style="WIDTH: 100%" type="text"></td>
129
<td nowrap><span fckLang="DlgSelectValue">Value</span> </td>
130
<td width="100%" colSpan="2"><input id="txtSelValue" style="WIDTH: 100%; BACKGROUND-COLOR: buttonface" type="text" readonly></td>
133
<td nowrap><span fckLang="DlgSelectSize">Size</span> </td>
134
<td nowrap><input id="txtLines" type="text" size="2" value=""> <span fckLang="DlgSelectLines">lines</span></td>
135
<td nowrap align="right"><input id="chkMultiple" type="checkbox"><label for="chkMultiple" fckLang="DlgSelectChkMulti">Allow
136
multiple selections</label></td>
140
<hr style="POSITION: absolute">
141
<span style="LEFT: 10px; POSITION: relative; TOP: -7px" class="BackColor"> <span fckLang="DlgSelectOpAvail">Available
142
Options</span> </span>
145
<td width="50%"><span fckLang="DlgSelectOpText">Text</span><br>
146
<input id="txtText" style="WIDTH: 100%" type="text">
148
<td width="50%"><span fckLang="DlgSelectOpValue">Value</span><br>
149
<input id="txtValue" style="WIDTH: 100%" type="text">
151
<td vAlign="bottom"><input onclick="Add();" type="button" fckLang="DlgSelectBtnAdd" value="Add"></td>
152
<td vAlign="bottom"><input onclick="Modify();" type="button" fckLang="DlgSelectBtnModify" value="Modify"></td>
155
<td rowSpan="2"><select id="cmbText" style="WIDTH: 100%" onchange="GetE('cmbValue').selectedIndex = this.selectedIndex;Select(this);"
158
<td rowSpan="2"><select id="cmbValue" style="WIDTH: 100%" onchange="GetE('cmbText').selectedIndex = this.selectedIndex;Select(this);"
161
<td vAlign="top" colSpan="2">
165
<td vAlign="bottom" colSpan="2"><input style="WIDTH: 100%" onclick="Move(-1);" type="button" fckLang="DlgSelectBtnUp" value="Up">
167
<input style="WIDTH: 100%" onclick="Move(1);" type="button" fckLang="DlgSelectBtnDown"
172
<TD vAlign="bottom" colSpan="4"><INPUT onclick="SetSelectedValue();" type="button" fckLang="DlgSelectBtnSetValue" value="Set as selected value">
173
<input onclick="Delete();" type="button" fckLang="DlgSelectBtnDelete" value="Delete"></TD>