Subversion Repositories Applications.papyrus

Rev

Rev 1688 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1688 Rev 1921
-
 
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
1
<!--
2
<!--
2
 * FCKeditor - The text editor for internet
3
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * Copyright (C) 2003-2006 Frederico Caldeira Knabben
4
 * Copyright (C) 2003-2008 Frederico Caldeira Knabben
-
 
5
 *
-
 
6
 * == BEGIN LICENSE ==
4
 * 
7
 *
5
 * Licensed under the terms of the GNU Lesser General Public License:
8
 * Licensed under the terms of any of the following licenses at your
6
 * 		http://www.opensource.org/licenses/lgpl-license.php
9
 * choice:
7
 * 
10
 *
8
 * For further information visit:
11
 *  - GNU General Public License Version 2 or later (the "GPL")
9
 * 		http://www.fckeditor.net/
12
 *    http://www.gnu.org/licenses/gpl.html
10
 * 
13
 *
11
 * "Support Open Source software. What about a donation today?"
14
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
-
 
15
 *    http://www.gnu.org/licenses/lgpl.html
12
 * 
16
 *
13
 * File Name: fck_table.html
17
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
14
 * 	Table dialog window.
18
 *    http://www.mozilla.org/MPL/MPL-1.1.html
15
 * 
19
 *
16
 * File Authors:
20
 * == END LICENSE ==
-
 
21
 *
17
 * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
22
 * Table dialog window.
18
-->
23
-->
19
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
-
 
20
<html xmlns="http://www.w3.org/1999/xhtml">
24
<html xmlns="http://www.w3.org/1999/xhtml">
21
<head>
25
<head>
22
	<title>Table Properties</title>
26
	<title>Table Properties</title>
23
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
27
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
24
	<meta name="robots" content="noindex, nofollow" />
28
	<meta name="robots" content="noindex, nofollow" />
-
 
29
	<script src="common/fck_dialog_common.js" type="text/javascript"></script>
25
	<script type="text/javascript">
30
	<script type="text/javascript">
-
 
31
 
26
 
32
var dialog	= window.parent ;
-
 
33
var oEditor = dialog.InnerDialogLoaded() ;
27
var oEditor = window.parent.InnerDialogLoaded() ;
34
var dialogArguments = dialog.Args() ;
28
 
35
 
29
// Gets the document DOM
36
// Gets the document DOM
30
var oDOM = oEditor.FCK.EditorDocument ;
37
var oDOM = oEditor.FCK.EditorDocument ;
31
 
38
 
32
// Gets the table if there is one selected.
39
// Gets the table if there is one selected.
33
var table ;
40
var table ;
34
var e = oEditor.FCKSelection.GetSelectedElement() ;
41
var e = dialog.Selection.GetSelectedElement() ;
35
 
42
 
36
if ( ( !e && document.location.search.substr(1) == 'Parent' ) || ( e && e.tagName != 'TABLE' ) )
43
if ( ( !e && document.location.search.substr(1) == 'Parent' ) || ( e && e.tagName != 'TABLE' ) )
37
	e = oEditor.FCKSelection.MoveToAncestorNode( 'TABLE' ) ;
44
	e = oEditor.FCKSelection.MoveToAncestorNode( 'TABLE' ) ;
38
 
45
 
39
if ( e && e.tagName == "TABLE" )
46
if ( e && e.tagName == "TABLE" )
40
	table = e ;
47
	table = e ;
41
 
48
 
42
// Fired when the window loading process is finished. It sets the fields with the
49
// Fired when the window loading process is finished. It sets the fields with the
43
// actual values if a table is selected in the editor.
50
// actual values if a table is selected in the editor.
44
window.onload = function()
51
window.onload = function()
45
{
52
{
46
	// First of all, translate the dialog box texts
53
	// First of all, translate the dialog box texts
47
	oEditor.FCKLanguageManager.TranslatePage(document) ;
54
	oEditor.FCKLanguageManager.TranslatePage(document) ;
48
 
55
 
49
	if (table)
56
	if (table)
50
	{
57
	{
51
		document.getElementById('txtRows').value    = table.rows.length ;
58
		document.getElementById('txtRows').value    = table.rows.length ;
52
		document.getElementById('txtColumns').value = table.rows[0].cells.length ;
59
		document.getElementById('txtColumns').value = table.rows[0].cells.length ;
53
 
60
 
54
		// Gets the value from the Width or the Style attribute
61
		// Gets the value from the Width or the Style attribute
55
		var iWidth  = (table.style.width  ? table.style.width  : table.width ) ;
62
		var iWidth  = (table.style.width  ? table.style.width  : table.width ) ;
56
		var iHeight = (table.style.height ? table.style.height : table.height ) ;
63
		var iHeight = (table.style.height ? table.style.height : table.height ) ;
57
 
64
 
58
		if (iWidth.indexOf('%') >= 0)			// Percentual = %
65
		if (iWidth.indexOf('%') >= 0)			// Percentual = %
59
		{
66
		{
60
			iWidth = parseInt( iWidth.substr(0,iWidth.length - 1) ) ;
67
			iWidth = parseInt( iWidth.substr(0,iWidth.length - 1), 10 ) ;
61
			document.getElementById('selWidthType').value = "percent" ;
68
			document.getElementById('selWidthType').value = "percent" ;
62
		}
69
		}
63
		else if (iWidth.indexOf('px') >= 0)		// Style Pixel = px
70
		else if (iWidth.indexOf('px') >= 0)		// Style Pixel = px
64
		{																										  //
71
		{																										  //
65
			iWidth = iWidth.substr(0,iWidth.length - 2);
72
			iWidth = iWidth.substr(0,iWidth.length - 2);
66
			document.getElementById('selWidthType').value = "pixels" ;
73
			document.getElementById('selWidthType').value = "pixels" ;
67
		}
74
		}
68
		
75
 
69
		if (iHeight && iHeight.indexOf('px') >= 0)		// Style Pixel = px
76
		if (iHeight && iHeight.indexOf('px') >= 0)		// Style Pixel = px
70
			iHeight = iHeight.substr(0,iHeight.length - 2);
77
			iHeight = iHeight.substr(0,iHeight.length - 2);
71
		
78
 
72
		document.getElementById('txtWidth').value		= iWidth ;
79
		document.getElementById('txtWidth').value		= iWidth || '' ;
73
		document.getElementById('txtHeight').value		= iHeight ;
80
		document.getElementById('txtHeight').value		= iHeight || '' ;
74
		document.getElementById('txtBorder').value		= table.border ;
81
		document.getElementById('txtBorder').value		= GetAttribute( table, 'border', '' ) ;
75
		document.getElementById('selAlignment').value	= table.align ;
82
		document.getElementById('selAlignment').value	= GetAttribute( table, 'align', '' ) ;
76
		document.getElementById('txtCellPadding').value	= table.cellPadding	;
83
		document.getElementById('txtCellPadding').value	= GetAttribute( table, 'cellPadding', '' ) ;
77
		document.getElementById('txtCellSpacing').value	= table.cellSpacing	;
84
		document.getElementById('txtCellSpacing').value	= GetAttribute( table, 'cellSpacing', '' ) ;
78
		document.getElementById('txtSummary').value     = table.summary;
85
		document.getElementById('txtSummary').value     = GetAttribute( table, 'summary', '' ) ;
79
//		document.getElementById('cmbFontStyle').value	= table.className ;
86
//		document.getElementById('cmbFontStyle').value	= table.className ;
-
 
87
 
80
 
88
		var eCaption = oEditor.FCKDomTools.GetFirstChild( table, 'CAPTION' ) ;
81
		if (table.caption) document.getElementById('txtCaption').value = table.caption.innerHTML ;
89
		if ( eCaption ) document.getElementById('txtCaption').value = eCaption.innerHTML ;
82
		
90
 
83
		document.getElementById('txtRows').disabled    = true ;
91
		document.getElementById('txtRows').disabled    = true ;
-
 
92
		document.getElementById('txtColumns').disabled = true ;
84
		document.getElementById('txtColumns').disabled = true ;
93
		SelectField( 'txtWidth' ) ;
-
 
94
	}
-
 
95
	else
85
	}
96
		SelectField( 'txtRows' ) ;
86
	
97
 
87
	window.parent.SetOkButton( true ) ;	
98
	dialog.SetOkButton( true ) ;
88
	window.parent.SetAutoSize( true ) ;	
99
	dialog.SetAutoSize( true ) ;
89
}
100
}
90
 
101
 
91
// Fired when the user press the OK button
102
// Fired when the user press the OK button
92
function Ok()
103
function Ok()
93
{
104
{
94
	var bExists = ( table != null ) ;
105
	var bExists = ( table != null ) ;
95
	
106
 
96
	if ( ! bExists )
107
	if ( ! bExists )
97
	{
-
 
98
		table = oEditor.FCK.EditorDocument.createElement( "TABLE" ) ;
108
		table = oEditor.FCK.EditorDocument.createElement( "TABLE" ) ;
99
	}
-
 
100
 
109
 
101
	// Removes the Width and Height styles
110
	// Removes the Width and Height styles
102
	if ( bExists && table.style.width )		table.style.width = null ; //.removeAttribute("width") ;
111
	if ( bExists && table.style.width )		table.style.width = null ; //.removeAttribute("width") ;
103
	if ( bExists && table.style.height )	table.style.height = null ; //.removeAttribute("height") ;
112
	if ( bExists && table.style.height )	table.style.height = null ; //.removeAttribute("height") ;
104
	
113
 
-
 
114
	var sWidth = GetE('txtWidth').value ;
105
	table.width			= document.getElementById('txtWidth').value + ( document.getElementById('selWidthType').value == "percent" ? "%" : "") ;
115
	if ( sWidth.length > 0 && GetE('selWidthType').value == 'percent' )
-
 
116
		sWidth += '%' ;
-
 
117
 
-
 
118
	SetAttribute( table, 'width'		, sWidth ) ;
106
	table.height		= document.getElementById('txtHeight').value ;
119
	SetAttribute( table, 'height'		, GetE('txtHeight').value ) ;
107
	table.border		= document.getElementById('txtBorder').value ;
120
	SetAttribute( table, 'border'		, GetE('txtBorder').value ) ;
108
	table.align			= document.getElementById('selAlignment').value ;
121
	SetAttribute( table, 'align'		, GetE('selAlignment').value ) ;
109
	table.cellPadding	= document.getElementById('txtCellPadding').value ;
122
	SetAttribute( table, 'cellPadding'	, GetE('txtCellPadding').value ) ;
110
	table.cellSpacing	= document.getElementById('txtCellSpacing').value ;
123
	SetAttribute( table, 'cellSpacing'	, GetE('txtCellSpacing').value ) ;
111
	table.summary       = document.getElementById('txtSummary').value ;
124
	SetAttribute( table, 'summary'		, GetE('txtSummary').value ) ;
-
 
125
 
112
//	table.className		= cmbFontStyle.value ;
126
	var eCaption = oEditor.FCKDomTools.GetFirstChild( table, 'CAPTION' ) ;
113
	
127
 
114
	if ( document.getElementById('txtCaption').value != '')
128
	if ( document.getElementById('txtCaption').value != '')
115
	{
129
	{
-
 
130
		if ( !eCaption )
-
 
131
		{
-
 
132
			eCaption = oEditor.FCK.EditorDocument.createElement( 'CAPTION' ) ;
116
		if (! table.caption) table.createCaption() ;
133
			table.insertBefore( eCaption, table.firstChild ) ;
-
 
134
		}
-
 
135
 
117
		table.caption.innerHTML = document.getElementById('txtCaption').value ;
136
		eCaption.innerHTML = document.getElementById('txtCaption').value ;
118
	}
137
	}
119
	else if ( bExists && table.caption )
138
	else if ( bExists && eCaption )
120
	{
139
	{
-
 
140
		// TODO: It causes an IE internal error if using removeChild or
-
 
141
		// table.deleteCaption() (see #505).
121
		if ( document.all )
142
		if ( oEditor.FCKBrowserInfo.IsIE )
122
			table.caption.innerHTML = '' ;	// TODO: It causes an IE internal error if using removeChild.
143
			eCaption.innerHTML = '' ;
123
		else
144
		else
124
			table.caption.parentNode.removeChild( table.caption ) ;
145
			eCaption.parentNode.removeChild( eCaption ) ;
125
	}
146
	}
126
		
147
 
127
	if (! bExists)
148
	if (! bExists)
128
	{
149
	{
129
		var iRows = document.getElementById('txtRows').value ;
150
		var iRows = document.getElementById('txtRows').value ;
130
		var iCols = document.getElementById('txtColumns').value ;
151
		var iCols = document.getElementById('txtColumns').value ;
131
		
152
 
132
		for ( var r = 0 ; r < iRows ; r++ )
153
		for ( var r = 0 ; r < iRows ; r++ )
133
		{
154
		{
134
			var oRow = table.insertRow(-1) ;
155
			var oRow = table.insertRow(-1) ;
135
			for ( var c = 0 ; c < iCols ; c++ )
156
			for ( var c = 0 ; c < iCols ; c++ )
136
			{
157
			{
137
				var oCell = oRow.insertCell(-1) ;
158
				var oCell = oRow.insertCell(-1) ;
138
				if ( oEditor.FCKBrowserInfo.IsGecko )
159
				if ( oEditor.FCKBrowserInfo.IsGeckoLike )
139
					oCell.innerHTML = '<br _moz_editor_bogus_node="TRUE">' ;
160
					oEditor.FCKTools.AppendBogusBr( oCell ) ;
140
				//oCell.innerHTML = "&nbsp;" ;
-
 
141
			}
161
			}
142
		}
162
		}
143
		
163
 
144
		oEditor.FCKUndo.SaveUndoStep() ;
164
		oEditor.FCKUndo.SaveUndoStep() ;
145
		
165
 
146
		// START iCM MODIFICATIONS	
-
 
147
		// Amended to ensure that newly inserted tables are not incorrectly nested in P tags, etc
-
 
148
		// We insert the table first and then rectify any nestings afterwards so we can re-use the
-
 
149
		// FCKTablesProcessor function that corrects tables on SetHTML()
-
 
150
		/*
-
 
151
		table = oEditor.FCK.InsertElementAndGetIt( table ) ;
-
 
152
		if ( !oEditor.FCKConfig.UseBROnCarriageReturn )
-
 
153
		{
-
 
154
			oEditor.FCKTablesProcessor.CheckTableNesting( table ) ;
-
 
155
		}
-
 
156
		*/
-
 
157
		// END iCM MODIFICATIONS	
-
 
158
		
-
 
159
		oEditor.FCK.InsertElement( table ) ;
166
		oEditor.FCK.InsertElement( table ) ;
160
	}
167
	}
161
	
-
 
162
	return true ;
-
 
163
}
-
 
164
 
-
 
165
function IsDigit( e )
-
 
166
{
-
 
167
	e = e || event ;
-
 
168
	var iCode = ( e.keyCode || e.charCode ) ;
168
 
169
	return 
-
 
170
		(
-
 
171
			( iCode >= 48 && iCode <= 57 )		// Numbers
-
 
172
			|| (iCode >= 37 && iCode <= 40)		// Arrows
-
 
173
			|| iCode == 8		// Backspace
-
 
174
			|| iCode == 46		// Delete
-
 
175
		) ;
169
	return true ;
176
}
170
}
177
 
171
 
178
	</script>
172
	</script>
179
</head>
173
</head>
180
<body style="overflow: hidden">
174
<body style="overflow: hidden">
181
	<table id="otable" cellspacing="0" cellpadding="0" width="100%" border="0" style="height: 100%">
175
	<table id="otable" cellspacing="0" cellpadding="0" width="100%" border="0" style="height: 100%">
182
		<tr>
176
		<tr>
183
			<td>
177
			<td>
184
				<table cellspacing="1" cellpadding="1" width="100%" border="0">
178
				<table cellspacing="1" cellpadding="1" width="100%" border="0">
185
					<tr>
179
					<tr>
186
						<td valign="top">
180
						<td valign="top">
187
							<table cellspacing="0" cellpadding="0" border="0">
181
							<table cellspacing="0" cellpadding="0" border="0">
188
								<tr>
182
								<tr>
189
									<td>
183
									<td>
190
										<span fcklang="DlgTableRows">Rows</span>:</td>
184
										<span fcklang="DlgTableRows">Rows</span>:</td>
191
									<td>
185
									<td>
192
										&nbsp;<input id="txtRows" type="text" maxlength="3" size="2" value="3" name="txtRows"
186
										&nbsp;<input id="txtRows" type="text" maxlength="3" size="2" value="3" name="txtRows"
193
											onkeypress="return IsDigit(event);" /></td>
187
											onkeypress="return IsDigit(event);" /></td>
194
								</tr>
188
								</tr>
195
								<tr>
189
								<tr>
196
									<td>
190
									<td>
197
										<span fcklang="DlgTableColumns">Columns</span>:</td>
191
										<span fcklang="DlgTableColumns">Columns</span>:</td>
198
									<td>
192
									<td>
199
										&nbsp;<input id="txtColumns" type="text" maxlength="2" size="2" value="2" name="txtColumns"
193
										&nbsp;<input id="txtColumns" type="text" maxlength="2" size="2" value="2" name="txtColumns"
200
											onkeypress="return IsDigit(event);" /></td>
194
											onkeypress="return IsDigit(event);" /></td>
201
								</tr>
195
								</tr>
202
								<tr>
196
								<tr>
203
									<td>
197
									<td>
204
										&nbsp;</td>
198
										&nbsp;</td>
205
									<td>
199
									<td>
206
										&nbsp;</td>
200
										&nbsp;</td>
207
								</tr>
201
								</tr>
208
								<tr>
202
								<tr>
209
									<td>
203
									<td>
210
										<span fcklang="DlgTableBorder">Border size</span>:</td>
204
										<span fcklang="DlgTableBorder">Border size</span>:</td>
211
									<td>
205
									<td>
212
										&nbsp;<input id="txtBorder" type="text" maxlength="2" size="2" value="1" name="txtBorder"
206
										&nbsp;<input id="txtBorder" type="text" maxlength="2" size="2" value="1" name="txtBorder"
213
											onkeypress="return IsDigit(event);" /></td>
207
											onkeypress="return IsDigit(event);" /></td>
214
								</tr>
208
								</tr>
215
								<tr>
209
								<tr>
216
									<td>
210
									<td>
217
										<span fcklang="DlgTableAlign">Alignment</span>:</td>
211
										<span fcklang="DlgTableAlign">Alignment</span>:</td>
218
									<td>
212
									<td>
219
										&nbsp;<select id="selAlignment" name="selAlignment">
213
										&nbsp;<select id="selAlignment" name="selAlignment">
220
											<option fcklang="DlgTableAlignNotSet" value="" selected="selected">&lt;Not set&gt;</option>
214
											<option fcklang="DlgTableAlignNotSet" value="" selected="selected">&lt;Not set&gt;</option>
221
											<option fcklang="DlgTableAlignLeft" value="left">Left</option>
215
											<option fcklang="DlgTableAlignLeft" value="left">Left</option>
222
											<option fcklang="DlgTableAlignCenter" value="center">Center</option>
216
											<option fcklang="DlgTableAlignCenter" value="center">Center</option>
223
											<option fcklang="DlgTableAlignRight" value="right">Right</option>
217
											<option fcklang="DlgTableAlignRight" value="right">Right</option>
224
										</select></td>
218
										</select></td>
225
								</tr>
219
								</tr>
226
							</table>
220
							</table>
227
						</td>
221
						</td>
228
						<td>
222
						<td>
229
							&nbsp;&nbsp;&nbsp;</td>
223
							&nbsp;&nbsp;&nbsp;</td>
230
						<td align="right" valign="top">
224
						<td align="right" valign="top">
231
							<table cellspacing="0" cellpadding="0" border="0">
225
							<table cellspacing="0" cellpadding="0" border="0">
232
								<tr>
226
								<tr>
233
									<td>
227
									<td>
234
										<span fcklang="DlgTableWidth">Width</span>:</td>
228
										<span fcklang="DlgTableWidth">Width</span>:</td>
235
									<td>
229
									<td>
236
										&nbsp;<input id="txtWidth" type="text" maxlength="4" size="3" value="200" name="txtWidth"
230
										&nbsp;<input id="txtWidth" type="text" maxlength="4" size="3" value="200" name="txtWidth"
237
											onkeypress="return IsDigit(event);" /></td>
231
											onkeypress="return IsDigit(event);" /></td>
238
									<td>
232
									<td>
239
										&nbsp;<select id="selWidthType" name="selWidthType">
233
										&nbsp;<select id="selWidthType" name="selWidthType">
240
											<option fcklang="DlgTableWidthPx" value="pixels" selected="selected">pixels</option>
234
											<option fcklang="DlgTableWidthPx" value="pixels" selected="selected">pixels</option>
241
											<option fcklang="DlgTableWidthPc" value="percent">percent</option>
235
											<option fcklang="DlgTableWidthPc" value="percent">percent</option>
242
										</select></td>
236
										</select></td>
243
								</tr>
237
								</tr>
244
								<tr>
238
								<tr>
245
									<td>
239
									<td>
246
										<span fcklang="DlgTableHeight">Height</span>:</td>
240
										<span fcklang="DlgTableHeight">Height</span>:</td>
247
									<td>
241
									<td>
248
										&nbsp;<input id="txtHeight" type="text" maxlength="4" size="3" name="txtHeight" onkeypress="return IsDigit(event);" /></td>
242
										&nbsp;<input id="txtHeight" type="text" maxlength="4" size="3" name="txtHeight" onkeypress="return IsDigit(event);" /></td>
249
									<td>
243
									<td>
250
										&nbsp;<span fcklang="DlgTableWidthPx">pixels</span></td>
244
										&nbsp;<span fcklang="DlgTableWidthPx">pixels</span></td>
251
								</tr>
245
								</tr>
252
								<tr>
246
								<tr>
253
									<td>
247
									<td>
254
										&nbsp;</td>
248
										&nbsp;</td>
255
									<td>
249
									<td>
256
										&nbsp;</td>
250
										&nbsp;</td>
257
									<td>
251
									<td>
258
										&nbsp;</td>
252
										&nbsp;</td>
259
								</tr>
253
								</tr>
260
								<tr>
254
								<tr>
261
									<td nowrap="nowrap">
255
									<td nowrap="nowrap">
262
										<span fcklang="DlgTableCellSpace">Cell spacing</span>:</td>
256
										<span fcklang="DlgTableCellSpace">Cell spacing</span>:</td>
263
									<td>
257
									<td>
264
										&nbsp;<input id="txtCellSpacing" type="text" maxlength="2" size="2" value="1" name="txtCellSpacing"
258
										&nbsp;<input id="txtCellSpacing" type="text" maxlength="2" size="2" value="1" name="txtCellSpacing"
265
											onkeypress="return IsDigit(event);" /></td>
259
											onkeypress="return IsDigit(event);" /></td>
266
									<td>
260
									<td>
267
										&nbsp;</td>
261
										&nbsp;</td>
268
								</tr>
262
								</tr>
269
								<tr>
263
								<tr>
270
									<td nowrap="nowrap">
264
									<td nowrap="nowrap">
271
										<span fcklang="DlgTableCellPad">Cell padding</span>:</td>
265
										<span fcklang="DlgTableCellPad">Cell padding</span>:</td>
272
									<td>
266
									<td>
273
										&nbsp;<input id="txtCellPadding" type="text" maxlength="2" size="2" value="1" name="txtCellPadding"
267
										&nbsp;<input id="txtCellPadding" type="text" maxlength="2" size="2" value="1" name="txtCellPadding"
274
											onkeypress="return IsDigit(event);" /></td>
268
											onkeypress="return IsDigit(event);" /></td>
275
									<td>
269
									<td>
276
										&nbsp;</td>
270
										&nbsp;</td>
277
								</tr>
271
								</tr>
278
							</table>
272
							</table>
279
						</td>
273
						</td>
280
					</tr>
274
					</tr>
281
				</table>
275
				</table>
282
				<table cellspacing="0" cellpadding="0" width="100%" border="0">
276
				<table cellspacing="0" cellpadding="0" width="100%" border="0">
283
					<!--
-
 
284
						<tr>
-
 
285
						<td nowrap>
-
 
286
						<span fcklang="DlgClassName">Class Name</span>:</td>
-
 
287
							<td>&nbsp;</td>
-
 
288
										<td>
-
 
289
										<script type="text/javascript">
-
 
290
//											var tbstyles = new TBCombo( "FontStyle"		, "null"			, "", oEditor.config.StyleNames, oEditor.config.StyleValues, 'CheckStyle("cmbFontStyle")');
-
 
291
//											document.write(tbstyles.GetHTML());
-
 
292
										</script></td>
-
 
293
						</tr>
-
 
294
					-->
-
 
295
					<tr>
277
					<tr>
296
						<td nowrap="nowrap">
278
						<td nowrap="nowrap">
297
							<span fcklang="DlgTableCaption">Caption</span>:&nbsp;</td>
279
							<span fcklang="DlgTableCaption">Caption</span>:&nbsp;</td>
298
						<td>
280
						<td>
299
							&nbsp;</td>
281
							&nbsp;</td>
300
						<td width="100%" nowrap="nowrap">
282
						<td width="100%" nowrap="nowrap">
301
							<input id="txtCaption" type="text" style="width: 100%" /></td>
283
							<input id="txtCaption" type="text" style="width: 100%" /></td>
302
					</tr>
284
					</tr>
303
					<tr>
285
					<tr>
304
						<td nowrap="nowrap">
286
						<td nowrap="nowrap">
305
							<span fcklang="DlgTableSummary">Summary</span>:&nbsp;</td>
287
							<span fcklang="DlgTableSummary">Summary</span>:&nbsp;</td>
306
						<td>
288
						<td>
307
							&nbsp;</td>
289
							&nbsp;</td>
308
						<td width="100%" nowrap="nowrap">
290
						<td width="100%" nowrap="nowrap">
309
							<input id="txtSummary" type="text" style="width: 100%" /></td>
291
							<input id="txtSummary" type="text" style="width: 100%" /></td>
310
					</tr>
292
					</tr>
311
				</table>
293
				</table>
312
			</td>
294
			</td>
313
		</tr>
295
		</tr>
314
	</table>
296
	</table>
315
</body>
297
</body>
316
</html>
298
</html>