0byt3m1n1
Path:
/
data
/
17
/
1
/
18
/
11
/
1670011
/
user
/
1801231
/
htdocs
/
marketting
/
js
/
scripts
/
moz
/
[
Home
]
File: form_button.htm
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <link href="../style/editor.css" rel="stylesheet" type="text/css"> <script> var sLangDir=window.opener.oUtil.langDir; document.write("<scr"+"ipt src='../language/"+sLangDir+"/form_button.js'></scr"+"ipt>"); </script> <script>writeTitle()</script> <script> function GetElement(oElement,sMatchTag) { while (oElement!=null&&oElement.tagName!=sMatchTag) { if(oElement.tagName=="BODY")return null; oElement=oElement.parentNode; } return oElement; } function doWindowFocus() { window.opener.oUtil.onSelectionChanged=new Function("realTime()"); } function bodyOnLoad() { window.onfocus=doWindowFocus; window.opener.oUtil.onSelectionChanged=new Function("realTime()"); realTime() } function realTime() { var oEditor=window.opener.oUtil.oEditor; var oSel=oEditor.getSelection(); var selEl = window.opener.getSelectedElement(oSel); oEl = GetElement(selEl, "INPUT"); var btnInsert = document.getElementById("btnInsert"); var btnApply = document.getElementById("btnApply"); var btnOk = document.getElementById("btnOk"); var inpName = document.getElementById("inpName"); var inpType = document.getElementById("inpType"); var inpValue = document.getElementById("inpValue"); if (oEl) { if(oEl.type=="button" || oEl.type=="submit" || oEl.type=="reset") { btnInsert.style.display="none"; btnApply.style.display=""; btnOk.style.display=""; inpType.value=oEl.type; inpType.disabled=true; if(oEl.name)inpName.value=oEl.name; if(oEl.value) inpValue.value=oEl.value; } } else { btnInsert.style.display="block"; btnApply.style.display="none"; btnOk.style.display="none"; inpType.disabled=false; inpType.value="button"; inpName.value="button1"; inpValue.value="button"; } } function doApply() { var oEditor=window.opener.oUtil.oEditor; var oSel=oEditor.getSelection(); var selEl = window.opener.getSelectedElement(oSel); oEl = GetElement(selEl, "INPUT"); var inpName = document.getElementById("inpName"); var inpType = document.getElementById("inpType"); var inpValue = document.getElementById("inpValue"); window.opener.oUtil.obj.saveForUndo(); if (oEl) { oEl.name=inpName.value; if(inpValue.value!="") oEl.value=inpValue.value; } else { var elm = oEditor.document.createElement("INPUT"); elm.type = inpType.value; elm.name = inpName.value; elm.value = inpValue.value; oSel = oEditor.getSelection(); range = oSel.getRangeAt(0); range.collapse(true); range.insertNode(elm); range = oEditor.document.createRange(); range.selectNodeContents(elm); oSel = oEditor.getSelection(); oSel.removeAllRanges(); oSel.addRange(range); } realTime(); window.opener.realTime(window.opener.oUtil.obj); window.opener.oUtil.obj.selectElement(0); window.setTimeout("window.focus()", 10); } function doChangeType() { var inpName = document.getElementById("inpName"); var inpType = document.getElementById("inpType"); var inpValue = document.getElementById("inpValue"); if(inpType.value=="button") { inpName.value="button1" inpValue.value="button" } if(inpType.value=="submit") { inpName.value="submit1" inpValue.value="submit" } if(inpType.value=="reset") { inpName.value="reset1" inpValue.value="reset" } } </script> </head> <body onload="loadTxt();bodyOnLoad()" style="overflow:hidden;"> <table width=100% height=100% align=center cellpadding=0 cellspacing=0> <tr> <td valign=top style="padding:5px;height:100%"> <table width=100%> <tr id=idType> <td nowrap><span id=txtLang name=txtLang>Type</span>: </td> <td width=100%> <select name=inpType id=inpType onchange="doChangeType()" style="width:100%" class="inpSel"> <option value="button" id="optLang" name="optLang">Button</option> <option value="submit" id="optLang" name="optLang">Submit</option> <option value="reset" id="optLang" name="optLang">Reset</option> </select> </td> </tr> <tr> <td nowrap><span id=txtLang name=txtLang>Name</span>: </td> <td><INPUT type="text" ID="inpName" NAME="inpName" style="width:100%;padding-left:2px" value="button1" class="inpTxt"></td> </tr> <tr> <td nowrap><span id=txtLang name=txtLang>Value</span>: </td> <td><INPUT type="text" ID="inpValue" NAME="inpValue" style="width:100%;padding-left:2px" value="button" class="inpTxt"></td> </tr> </table> </td> </tr> <tr> <td class="dialogFooter" style="padding:6px;" align="right"> <table cellpadding=1 cellspacing=0> <td> <input type=button name=btnCancel id=btnCancel value="cancel" onclick="self.close()" class="inpBtn" onmouseover="this.className='inpBtnOver';" onmouseout="this.className='inpBtnOut'"> </td> <td> <input type=button name=btnInsert id=btnInsert value="insert" onclick="doApply();self.close()" class="inpBtn" onmouseover="this.className='inpBtnOver';" onmouseout="this.className='inpBtnOut'"> </td> <td> <input type=button name=btnApply id=btnApply value="apply" style="display:none" onclick="doApply()" class="inpBtn" onmouseover="this.className='inpBtnOver';" onmouseout="this.className='inpBtnOut'"> </td> <td> <input type=button name=btnOk id=btnOk value=" ok " style="display:none;" onclick="doApply();self.close()" class="inpBtn" onmouseover="this.className='inpBtnOver';" onmouseout="this.className='inpBtnOut'"> </td> </table> </td> </tr> </table> </body> </html>