Просмотр файла wym-editor/dialogs/table.htm

Размер файла: 1.39Kb
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
 * WYMeditor : what you see is What You Mean web-based editor
 * Copyright (C) 2006 Jean-François Hovinne - Daniel Reszka
 * Use of WYMeditor is granted by the terms of the MIT License (http://www.opensource.org/licenses/mit-license.php).
 *
 * For further information visit:
 * 		http://www.wymeditor.org/
 * 
 * File Name:
 *		table.htm
 *		Dialog which defines tables values.
 *		See the documentation for more info.
 * 
 * File Authors:
 * 		Jean-François Hovinne ([email protected])
 *		Daniel Reszka ([email protected])
-->

<html>
<head>
<title>WYMeditor - Table</title>
<link rel="stylesheet" type="text/css" href="../skins/editor-skin.css" />
<script type="text/javascript" src="../browser.js"></script>
<script type="text/javascript" src="../util.js"></script>
<script type="text/javascript" src="../dialog.js"></script>
</head>

<body class="dialog" id="table">
<p>
 <label>Number of rows</label><input type="text" id="table_rows" value="3" />
</p>
<p>
 <label>Number of columns</label><input type="text" id="table_cols" value="2" />
</p>
<p>
 <input id="bt_submit" type="button" value="Submit" onclick="table_sendValue();window.close()" />
 <input id="bt_cancel" type="button" value="Cancel" onclick="window.close()" />
</p>
</body>
</html>