1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
2<!--
3 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
4 * Copyright (C) 2003-2007 Frederico Caldeira Knabben
5 *
6 * == BEGIN LICENSE ==
7 *
8 * Licensed under the terms of any of the following licenses at your
9 * choice:
10 *
11 *  - GNU General Public License Version 2 or later (the "GPL")
12 *    http://www.gnu.org/licenses/gpl.html
13 *
14 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
15 *    http://www.gnu.org/licenses/lgpl.html
16 *
17 *  - Mozilla Public License Version 1.1 or later (the "MPL")
18 *    http://www.mozilla.org/MPL/MPL-1.1.html
19 *
20 * == END LICENSE ==
21 *
22 * Radio Button dialog window.
23-->
24<html>
25	<head>
26		<title>Radio Button 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">
31
32var oEditor = window.parent.InnerDialogLoaded() ;
33
34// Gets the document DOM
35var oDOM = oEditor.FCK.EditorDocument ;
36
37var oActiveEl = oEditor.FCKSelection.GetSelectedElement() ;
38
39window.onload = function()
40{
41	// First of all, translate the dialog box texts
42	oEditor.FCKLanguageManager.TranslatePage(document) ;
43
44	if ( oActiveEl && oActiveEl.tagName.toUpperCase() == 'INPUT' && oActiveEl.type == 'radio' )
45	{
46		GetE('txtName').value		= oActiveEl.name ;
47		GetE('txtValue').value		= oEditor.FCKBrowserInfo.IsIE ? oActiveEl.value : GetAttribute( oActiveEl, 'value' ) ;
48		GetE('txtSelected').checked	= oActiveEl.checked ;
49	}
50	else
51		oActiveEl = null ;
52
53	window.parent.SetOkButton( true ) ;
54}
55
56function Ok()
57{
58	oEditor.FCKUndo.SaveUndoStep() ;
59
60	if ( !oActiveEl )
61	{
62		oActiveEl = oEditor.FCK.EditorDocument.createElement( 'INPUT' ) ;
63		oActiveEl.type = 'radio' ;
64		oActiveEl = oEditor.FCK.InsertElement( oActiveEl ) ;
65	}
66
67	if ( GetE('txtName').value.length > 0 )
68		oActiveEl.name = GetE('txtName').value ;
69
70	if ( oEditor.FCKBrowserInfo.IsIE )
71		oActiveEl.value = GetE('txtValue').value ;
72	else
73		SetAttribute( oActiveEl, 'value', GetE('txtValue').value ) ;
74
75	var bIsChecked = GetE('txtSelected').checked ;
76	SetAttribute( oActiveEl, 'checked', bIsChecked ? 'checked' : null ) ;	// For Firefox
77	oActiveEl.checked = bIsChecked ;
78
79	return true ;
80}
81
82		</script>
83	</head>
84	<body style="OVERFLOW: hidden" scroll="no">
85		<table height="100%" width="100%">
86			<tr>
87				<td align="center">
88					<table border="0" cellpadding="0" cellspacing="0" width="80%">
89						<tr>
90							<td>
91								<span fckLang="DlgCheckboxName">Name</span><br>
92								<input type="text" size="20" id="txtName" style="WIDTH: 100%">
93							</td>
94						</tr>
95						<tr>
96							<td>
97								<span fckLang="DlgCheckboxValue">Value</span><br>
98								<input type="text" size="20" id="txtValue" style="WIDTH: 100%">
99							</td>
100						</tr>
101						<tr>
102							<td><input type="checkbox" id="txtSelected"><label for="txtSelected" fckLang="DlgCheckboxSelected">Checked</label></td>
103						</tr>
104					</table>
105				</td>
106			</tr>
107		</table>
108	</body>
109</html>
110