tijian_tieying/web/Web/eWebEditor/dialog/tablecellsplit.htm
2025-02-20 12:14:39 +08:00

96 lines
2.5 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script language=javascript src="dialog.js"></script>
<link href='dialog.css' type='text/css' rel='stylesheet'>
<title>单元格拆分</title>
<script language="javascript">
function MoreThanOne(obj, sErr){
var b=false;
if (obj.value!=""){
obj.value=parseFloat(obj.value);
if (obj.value!="0"){
b=true;
}
}
if (b==false){
BaseAlert(obj,sErr);
return false;
}
return true;
}
function doView(opt){
if (opt=="col"){
d_col.checked=true;
d_row.checked=false;
}else{
d_col.checked=false;
d_row.checked=true;
}
if (d_col.checked){
d_view.innerHTML = "<table border=1 cellpadding=0><tr><td width=25>&nbsp;</td><td width=25>&nbsp;</td></tr></table>";
d_label.innerHTML = "&nbsp;&nbsp;&nbsp;&nbsp;列数:";
}
if (d_row.checked){
d_view.innerHTML = "<table border=1 cellpadding=0 width=50><tr><td>&nbsp;</td></tr><tr><td>&nbsp;</td></tr></table>";
d_label.innerHTML = "&nbsp;&nbsp;&nbsp;&nbsp;行数:";
}
}
function ok(){
if (!MoreThanOne(d_num,"无效的行列数必须大于1")) return;
if (d_row.checked){
dialogArguments.TableRowSplit(parseInt(d_num.value));
}
if (d_col.checked){
dialogArguments.TableColSplit(parseInt(d_num.value));
}
window.returnValue = null;
window.close();
}
function InitDocument(){
adjustDialog();
}
</script>
</head>
<body onload="InitDocument()">
<table border=0 cellpadding=0 cellspacing=5 id=tabDialogSize><tr><td>
<table border=0 cellpadding=0 cellspacing=0 align=center width=180 height=150>
<tr>
<td>
<table border=0 cellpadding=0 cellspacing=0>
<tr><td colspan=3 height=5></td></tr>
<tr><td noWrap><input type=radio id=d_col checked onclick="doView('col')"><label for="d_col">拆分为列</label></td><td rowspan=3 width=30>&nbsp;</td><td width=60 rowspan=3 id=d_view valign=middle align=center></td></tr>
<tr><td height=5></td></tr>
<tr><td noWrap><input type=radio id=d_row onclick="doView('row')"><label for="d_row">拆分为行</label></td></tr>
<tr><td height=5 colspan=3></td></tr>
<tr>
<td noWrap id=d_label></td>
<td></td>
<td><input type=text id=d_num size=8 value="1" ONKEYPRESS="event.returnValue=IsDigit();" maxlength=3></td>
</tr>
</table>
</tr>
<tr><td height=5></td></tr>
<tr><td noWrap align=right><input type=submit value='确定' id=Ok onclick="ok()">&nbsp;&nbsp;<input type=button value='取消' onclick="window.close();"></td></tr>
</table>
</td></tr></table>
<Script Language=JavaScript>
doView('col');
</Script>
</body>
</html>