You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

153 lines
7.2 KiB
Plaintext

9 months ago
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script type="text/javascript" src="../internal.js"></script>
<link rel="stylesheet" href="../../../bootstrap/bootstrap.css">
<link rel="stylesheet" href="../../../bootstrap/bootstrap-responsive.css">
<style type="text/css">
*{color: #838383;margin: 0;padding: 0}
html,body {font-size: 12px;overflow: hidden; }
body {
padding-left: 20px;padding-right: 20px;
}
</style>
</head>
<body>
<table class="table table-striped table-bordered" style="margin-top:18px;margin-bottom: 0;">
<tr>
<th><span>控件名称</span><span class="label label-important">*</span></th>
<th><span>默认值</span> </th>
</tr>
<tr>
<td> <input id="txtName" placeholder="必填项" type="text" size="20" /> </td>
<td> <input id="txtValue" placeholder="无则不填" type="text" size="20" /> </td>
</tr>
<tr>
<th><span>输入框样式</span> </th>
<th><span>可见性</span> </th>
</tr>
<tr>
<td> 宽: <input id="txtWidth" type="text" value="150" size="3" /> 高 <input id="txtHeight" type="text" value="20" size="3" /></td>
<td> <label><input id="hidden" type="checkbox" /> 隐藏 </label> </td>
</tr>
<tr>
<th><span>字体大小</span> </th>
<th><span>对齐方式</span> </th>
</tr>
<tr>
<td> <input id="txtFontSize" type="text" size="5" value="12" /> </td>
<td>
<select id="txtAlign">
<option value="left" >左对齐</option>
<option value="center">居中对齐</option>
<option value="right">右对齐</option>
</select>
</td>
</tr>
</table>
<script type="text/javascript">
var oNode = null;
window.onload = function() {
//弹出窗口初始化函数,这里主要是判断是编辑文本框还是新增
//以下这个对象定义在editor.all.js第13259行。
if( UE.plugins['textfield'].editdom ){
oNode = UE.plugins['textfield'].editdom;
$G('txtName').value = oNode.getAttribute('title');
$G('txtValue').value = oNode.getAttribute('value');
var nHidden = oNode.getAttribute('hide');
if ( nHidden == '1' ) {
$G('hidden').checked = true ;
} else {
nHidden = '0';
}
var sItemId = oNode.getAttribute('name').substr(5);
var sFontSize = oNode.style.fontSize;
$G('txtFontSize').value = sFontSize.substr(0, sFontSize.length - 2);//这里的substr是为了去掉末尾的'px'
var sSizeWidth = oNode.style.width;
$G('txtWidth').value = sSizeWidth.substr(0, sSizeWidth.length - 2);
var sSizeHeight = oNode.style.height;
$G('txtHeight').value = sSizeHeight.substr(0, sSizeHeight.length - 2);
$G('txtAlign').value = oNode.style.textAlign;
}
}
dialog.oncancel = function () {
if( UE.plugins['textfield'].editdom ) {
delete UE.plugins['textfield'].editdom;
}
};
dialog.onok = function (){
if($G('txtName').value==''){
alert('请输入控件名称');
return false;
}
if( !oNode ) {
var sUrl = parent.getItemUrl;
var nItemId = null;
ajax.request(sUrl, {timeout:60000,onsuccess:function (xhr) {
try {
nItemId = xhr.responseText;
var html = '<input type="text"';
html += ' title = "' + $G('txtName').value + '"';
html += ' name = "data_' + nItemId + '"';
html += ' value = "' + $G('txtValue').value + '"';
if ( $G('hidden').checked ) {
html += ' hide = "1"';
} else {
html += ' hide = "0"';
}
html += ' style = "';
if( $G('txtFontSize').value != '' ) {
html += 'font-size:' + $G('txtFontSize').value + 'px;';
}
if( $G('txtAlign').value != '' ) {
html += 'text-align:' + $G('txtAlign').value + ';';
}
if( $G('txtWidth').value != '' ) {
html += 'width:' + $G('txtWidth').value + 'px;';
}
if( $G('txtHeight').value != '' ) {
html += 'height:' + $G('txtHeight').value + 'px;';
}
html += '" />';
editor.execCommand('insertHtml',html);
} catch (e) {
return;
}
},
error:function () {
alert('Request TimeOut');
}
})
} else {
oNode.setAttribute('title', $G('txtName').value);
oNode.setAttribute('value', $G('txtValue').value);
if( $G('hidden').checked ) {
oNode.setAttribute('hide', 1);
} else {
oNode.setAttribute('hide', 0);
}
var style = '';
if( $G('txtFontSize').value != '' ) {
style += 'font-size:' + $G('txtFontSize').value + 'px;';
}
if( $G('txtAlign').value != '' ) {
style += 'text-align:' + $G('txtAlign').value + ';';
}
if( $G('txtWidth').value != '' ) {
style += 'width:' + $G('txtWidth').value + 'px;';
}
if( $G('txtHeight').value != '' ) {
style += 'height:' + $G('txtHeight').value + 'px;';
}
oNode.setAttribute('style',style );
delete UE.plugins['textfield'].editdom; //使用后清空这个对象,变回新增模式
}
};
</script>
</body>
</html>