mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-19 06:23:12 +01:00
317 lines
11 KiB
HTML
317 lines
11 KiB
HTML
|
<!--
|
||
|
* FCKeditor - The text editor for internet
|
||
|
* Copyright (C) 2003-2006 Frederico Caldeira Knabben
|
||
|
*
|
||
|
* Licensed under the terms of the GNU Lesser General Public License:
|
||
|
* http://www.opensource.org/licenses/lgpl-license.php
|
||
|
*
|
||
|
* For further information visit:
|
||
|
* http://www.fckeditor.net/
|
||
|
*
|
||
|
* "Support Open Source software. What about a donation today?"
|
||
|
*
|
||
|
* File Name: fck_table.html
|
||
|
* Table dialog window.
|
||
|
*
|
||
|
* File Authors:
|
||
|
* Frederico Caldeira Knabben (fredck@fckeditor.net)
|
||
|
-->
|
||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head>
|
||
|
<title>Table Properties</title>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
<meta name="robots" content="noindex, nofollow" />
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
var oEditor = window.parent.InnerDialogLoaded() ;
|
||
|
|
||
|
// Gets the document DOM
|
||
|
var oDOM = oEditor.FCK.EditorDocument ;
|
||
|
|
||
|
// Gets the table if there is one selected.
|
||
|
var table ;
|
||
|
var e = oEditor.FCKSelection.GetSelectedElement() ;
|
||
|
|
||
|
if ( ( !e && document.location.search.substr(1) == 'Parent' ) || ( e && e.tagName != 'TABLE' ) )
|
||
|
e = oEditor.FCKSelection.MoveToAncestorNode( 'TABLE' ) ;
|
||
|
|
||
|
if ( e && e.tagName == "TABLE" )
|
||
|
table = e ;
|
||
|
|
||
|
// Fired when the window loading process is finished. It sets the fields with the
|
||
|
// actual values if a table is selected in the editor.
|
||
|
window.onload = function()
|
||
|
{
|
||
|
// First of all, translate the dialog box texts
|
||
|
oEditor.FCKLanguageManager.TranslatePage(document) ;
|
||
|
|
||
|
if (table)
|
||
|
{
|
||
|
document.getElementById('txtRows').value = table.rows.length ;
|
||
|
document.getElementById('txtColumns').value = table.rows[0].cells.length ;
|
||
|
|
||
|
// Gets the value from the Width or the Style attribute
|
||
|
var iWidth = (table.style.width ? table.style.width : table.width ) ;
|
||
|
var iHeight = (table.style.height ? table.style.height : table.height ) ;
|
||
|
|
||
|
if (iWidth.indexOf('%') >= 0) // Percentual = %
|
||
|
{
|
||
|
iWidth = parseInt( iWidth.substr(0,iWidth.length - 1) ) ;
|
||
|
document.getElementById('selWidthType').value = "percent" ;
|
||
|
}
|
||
|
else if (iWidth.indexOf('px') >= 0) // Style Pixel = px
|
||
|
{ //
|
||
|
iWidth = iWidth.substr(0,iWidth.length - 2);
|
||
|
document.getElementById('selWidthType').value = "pixels" ;
|
||
|
}
|
||
|
|
||
|
if (iHeight && iHeight.indexOf('px') >= 0) // Style Pixel = px
|
||
|
iHeight = iHeight.substr(0,iHeight.length - 2);
|
||
|
|
||
|
document.getElementById('txtWidth').value = iWidth ;
|
||
|
document.getElementById('txtHeight').value = iHeight ;
|
||
|
document.getElementById('txtBorder').value = table.border ;
|
||
|
document.getElementById('selAlignment').value = table.align ;
|
||
|
document.getElementById('txtCellPadding').value = table.cellPadding ;
|
||
|
document.getElementById('txtCellSpacing').value = table.cellSpacing ;
|
||
|
document.getElementById('txtSummary').value = table.summary;
|
||
|
// document.getElementById('cmbFontStyle').value = table.className ;
|
||
|
|
||
|
if (table.caption) document.getElementById('txtCaption').value = table.caption.innerHTML ;
|
||
|
|
||
|
document.getElementById('txtRows').disabled = true ;
|
||
|
document.getElementById('txtColumns').disabled = true ;
|
||
|
}
|
||
|
|
||
|
window.parent.SetOkButton( true ) ;
|
||
|
window.parent.SetAutoSize( true ) ;
|
||
|
}
|
||
|
|
||
|
// Fired when the user press the OK button
|
||
|
function Ok()
|
||
|
{
|
||
|
var bExists = ( table != null ) ;
|
||
|
|
||
|
if ( ! bExists )
|
||
|
{
|
||
|
table = oEditor.FCK.EditorDocument.createElement( "TABLE" ) ;
|
||
|
}
|
||
|
|
||
|
// Removes the Width and Height styles
|
||
|
if ( bExists && table.style.width ) table.style.width = null ; //.removeAttribute("width") ;
|
||
|
if ( bExists && table.style.height ) table.style.height = null ; //.removeAttribute("height") ;
|
||
|
|
||
|
table.width = document.getElementById('txtWidth').value + ( document.getElementById('selWidthType').value == "percent" ? "%" : "") ;
|
||
|
table.height = document.getElementById('txtHeight').value ;
|
||
|
table.border = document.getElementById('txtBorder').value ;
|
||
|
table.align = document.getElementById('selAlignment').value ;
|
||
|
table.cellPadding = document.getElementById('txtCellPadding').value ;
|
||
|
table.cellSpacing = document.getElementById('txtCellSpacing').value ;
|
||
|
table.summary = document.getElementById('txtSummary').value ;
|
||
|
// table.className = cmbFontStyle.value ;
|
||
|
|
||
|
if ( document.getElementById('txtCaption').value != '')
|
||
|
{
|
||
|
if (! table.caption) table.createCaption() ;
|
||
|
table.caption.innerHTML = document.getElementById('txtCaption').value ;
|
||
|
}
|
||
|
else if ( bExists && table.caption )
|
||
|
{
|
||
|
if ( document.all )
|
||
|
table.caption.innerHTML = '' ; // TODO: It causes an IE internal error if using removeChild.
|
||
|
else
|
||
|
table.caption.parentNode.removeChild( table.caption ) ;
|
||
|
}
|
||
|
|
||
|
if (! bExists)
|
||
|
{
|
||
|
var iRows = document.getElementById('txtRows').value ;
|
||
|
var iCols = document.getElementById('txtColumns').value ;
|
||
|
|
||
|
for ( var r = 0 ; r < iRows ; r++ )
|
||
|
{
|
||
|
var oRow = table.insertRow(-1) ;
|
||
|
for ( var c = 0 ; c < iCols ; c++ )
|
||
|
{
|
||
|
var oCell = oRow.insertCell(-1) ;
|
||
|
if ( oEditor.FCKBrowserInfo.IsGecko )
|
||
|
oCell.innerHTML = '<br _moz_editor_bogus_node="TRUE">' ;
|
||
|
//oCell.innerHTML = " " ;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
oEditor.FCKUndo.SaveUndoStep() ;
|
||
|
|
||
|
// START iCM MODIFICATIONS
|
||
|
// Amended to ensure that newly inserted tables are not incorrectly nested in P tags, etc
|
||
|
// We insert the table first and then rectify any nestings afterwards so we can re-use the
|
||
|
// FCKTablesProcessor function that corrects tables on SetHTML()
|
||
|
/*
|
||
|
table = oEditor.FCK.InsertElementAndGetIt( table ) ;
|
||
|
if ( !oEditor.FCKConfig.UseBROnCarriageReturn )
|
||
|
{
|
||
|
oEditor.FCKTablesProcessor.CheckTableNesting( table ) ;
|
||
|
}
|
||
|
*/
|
||
|
// END iCM MODIFICATIONS
|
||
|
|
||
|
oEditor.FCK.InsertElement( table ) ;
|
||
|
}
|
||
|
|
||
|
return true ;
|
||
|
}
|
||
|
|
||
|
function IsDigit( e )
|
||
|
{
|
||
|
e = e || event ;
|
||
|
var iCode = ( e.keyCode || e.charCode ) ;
|
||
|
return
|
||
|
(
|
||
|
( iCode >= 48 && iCode <= 57 ) // Numbers
|
||
|
|| (iCode >= 37 && iCode <= 40) // Arrows
|
||
|
|| iCode == 8 // Backspace
|
||
|
|| iCode == 46 // Delete
|
||
|
) ;
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
<body style="overflow: hidden">
|
||
|
<table id="otable" cellspacing="0" cellpadding="0" width="100%" border="0" style="height: 100%">
|
||
|
<tr>
|
||
|
<td>
|
||
|
<table cellspacing="1" cellpadding="1" width="100%" border="0">
|
||
|
<tr>
|
||
|
<td valign="top">
|
||
|
<table cellspacing="0" cellpadding="0" border="0">
|
||
|
<tr>
|
||
|
<td>
|
||
|
<span fcklang="DlgTableRows">Rows</span>:</td>
|
||
|
<td>
|
||
|
<input id="txtRows" type="text" maxlength="3" size="2" value="3" name="txtRows"
|
||
|
onkeypress="return IsDigit(event);" /></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<span fcklang="DlgTableColumns">Columns</span>:</td>
|
||
|
<td>
|
||
|
<input id="txtColumns" type="text" maxlength="2" size="2" value="2" name="txtColumns"
|
||
|
onkeypress="return IsDigit(event);" /></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>
|
||
|
</td>
|
||
|
<td>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<span fcklang="DlgTableBorder">Border size</span>:</td>
|
||
|
<td>
|
||
|
<input id="txtBorder" type="text" maxlength="2" size="2" value="1" name="txtBorder"
|
||
|
onkeypress="return IsDigit(event);" /></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<span fcklang="DlgTableAlign">Alignment</span>:</td>
|
||
|
<td>
|
||
|
<select id="selAlignment" name="selAlignment">
|
||
|
<option fcklang="DlgTableAlignNotSet" value="" selected="selected"><Not set></option>
|
||
|
<option fcklang="DlgTableAlignLeft" value="left">Left</option>
|
||
|
<option fcklang="DlgTableAlignCenter" value="center">Center</option>
|
||
|
<option fcklang="DlgTableAlignRight" value="right">Right</option>
|
||
|
</select></td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</td>
|
||
|
<td>
|
||
|
</td>
|
||
|
<td align="right" valign="top">
|
||
|
<table cellspacing="0" cellpadding="0" border="0">
|
||
|
<tr>
|
||
|
<td>
|
||
|
<span fcklang="DlgTableWidth">Width</span>:</td>
|
||
|
<td>
|
||
|
<input id="txtWidth" type="text" maxlength="4" size="3" value="200" name="txtWidth"
|
||
|
onkeypress="return IsDigit(event);" /></td>
|
||
|
<td>
|
||
|
<select id="selWidthType" name="selWidthType">
|
||
|
<option fcklang="DlgTableWidthPx" value="pixels" selected="selected">pixels</option>
|
||
|
<option fcklang="DlgTableWidthPc" value="percent">percent</option>
|
||
|
</select></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<span fcklang="DlgTableHeight">Height</span>:</td>
|
||
|
<td>
|
||
|
<input id="txtHeight" type="text" maxlength="4" size="3" name="txtHeight" onkeypress="return IsDigit(event);" /></td>
|
||
|
<td>
|
||
|
<span fcklang="DlgTableWidthPx">pixels</span></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>
|
||
|
</td>
|
||
|
<td>
|
||
|
</td>
|
||
|
<td>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td nowrap="nowrap">
|
||
|
<span fcklang="DlgTableCellSpace">Cell spacing</span>:</td>
|
||
|
<td>
|
||
|
<input id="txtCellSpacing" type="text" maxlength="2" size="2" value="1" name="txtCellSpacing"
|
||
|
onkeypress="return IsDigit(event);" /></td>
|
||
|
<td>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td nowrap="nowrap">
|
||
|
<span fcklang="DlgTableCellPad">Cell padding</span>:</td>
|
||
|
<td>
|
||
|
<input id="txtCellPadding" type="text" maxlength="2" size="2" value="1" name="txtCellPadding"
|
||
|
onkeypress="return IsDigit(event);" /></td>
|
||
|
<td>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
<table cellspacing="0" cellpadding="0" width="100%" border="0">
|
||
|
<!--
|
||
|
<tr>
|
||
|
<td nowrap>
|
||
|
<span fcklang="DlgClassName">Class Name</span>:</td>
|
||
|
<td> </td>
|
||
|
<td>
|
||
|
<script type="text/javascript">
|
||
|
// var tbstyles = new TBCombo( "FontStyle" , "null" , "", oEditor.config.StyleNames, oEditor.config.StyleValues, 'CheckStyle("cmbFontStyle")');
|
||
|
// document.write(tbstyles.GetHTML());
|
||
|
</script></td>
|
||
|
</tr>
|
||
|
-->
|
||
|
<tr>
|
||
|
<td nowrap="nowrap">
|
||
|
<span fcklang="DlgTableCaption">Caption</span>: </td>
|
||
|
<td>
|
||
|
</td>
|
||
|
<td width="100%" nowrap="nowrap">
|
||
|
<input id="txtCaption" type="text" style="width: 100%" /></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td nowrap="nowrap">
|
||
|
<span fcklang="DlgTableSummary">Summary</span>: </td>
|
||
|
<td>
|
||
|
</td>
|
||
|
<td width="100%" nowrap="nowrap">
|
||
|
<input id="txtSummary" type="text" style="width: 100%" /></td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|