Блокирование закрытия окна tools.js
This commit is contained in:
@ -312,7 +312,7 @@ class EdtRec
|
||||
if(nList!=null)
|
||||
{
|
||||
nodeProp.field = new TCheckboxListField(nodeProp.getAttribute("n"));
|
||||
nCheckbox = nList.firstChild;
|
||||
let nCheckbox = nList.firstChild;
|
||||
while (nCheckbox!=null) {
|
||||
if(nCheckbox.nodeName=="option") {
|
||||
nodeProp.field.addCheckbox(nCheckbox.getAttribute("n"), nCheckbox.getAttribute("d"));
|
||||
@ -1513,7 +1513,7 @@ class EdtRec
|
||||
};
|
||||
}
|
||||
|
||||
//Поле с галочкой
|
||||
//Поле с галочкой (или галочками)
|
||||
class TCheckboxListField
|
||||
{
|
||||
constructor(name)
|
||||
@ -1529,7 +1529,7 @@ class TCheckboxListField
|
||||
this.array.push(input);
|
||||
|
||||
input.setAttribute("type", "checkbox");
|
||||
input.setAttribute("value", nCheckbox.getAttribute("n"));
|
||||
input.setAttribute("value", value);
|
||||
|
||||
var label = document.createElement("Label");
|
||||
// label.setAttribute("for",id_from_input);
|
||||
|
||||
@ -90,7 +90,9 @@ class DBMSUser
|
||||
if(this.win==null || this.win.closed)
|
||||
{
|
||||
this.win=new TWin(true);
|
||||
this.win.disableClosing=true;
|
||||
this.win.BuildGUI(10,10);
|
||||
deleteHTML('TWin_CL_'+this.win.uid); //Удаляю кнопку закрыть
|
||||
this.win.setCaption(trt('Authorization'));
|
||||
|
||||
this.win.setSize("350px","200px");
|
||||
|
||||
@ -586,10 +586,10 @@ class SRec
|
||||
let input = document.createElement('input');
|
||||
input.style.cssText="width: 100%;";
|
||||
input.setAttribute("type","text");
|
||||
input.onkeydown=function(event){
|
||||
/*input.onkeydown=function(event){
|
||||
events = event || window.event;
|
||||
if(events.keyCode==13) events.keyCode=9;
|
||||
};
|
||||
};*/
|
||||
input.setAttribute("name",columnNode.getAttribute("n"));
|
||||
if(columnNode.getAttribute("size")!=null)
|
||||
input.setAttribute("maxlength",columnNode.getAttribute("size"),0);
|
||||
@ -632,10 +632,10 @@ class SRec
|
||||
input = document.createElement('input');
|
||||
input.style.cssText="width: 100%;";
|
||||
input.setAttribute("type","text");
|
||||
input.onkeydown=function(event){
|
||||
/*input.onkeydown=function(event){
|
||||
events = event || window.event;
|
||||
if(events.keyCode==13) events.keyCode=9;
|
||||
};
|
||||
};*/
|
||||
input.setAttribute("name",columnNode.getAttribute("n"));
|
||||
if(columnNode.getAttribute("size")!=null)
|
||||
input.setAttribute("maxlength",columnNode.getAttribute("size"),0);
|
||||
|
||||
@ -902,12 +902,14 @@ function delChild(obj)
|
||||
*/
|
||||
function applyNodeToNode(first, second, name)
|
||||
{
|
||||
if(first===null || second===null || name ===null) return;
|
||||
if(first===null || second===null || name ===null){
|
||||
console.error("first="+first+" second="+second+" name="+name);
|
||||
return;
|
||||
}
|
||||
//Если есть совпадающие узлы то передаём в рекурсию если нет то просто копируем
|
||||
var fn=first.firstChild;
|
||||
while (fn !== null)
|
||||
{
|
||||
//alert(name+" "+fn.getAttribute("n"));
|
||||
var sn=null;
|
||||
if(fn.nodeName!=="#text" && fn.nodeName!=="#cdata-section" && fn.nodeName!=="#comment"){ //потому что для этих getAttribute вызывает ошибку
|
||||
sn=findNodeOnAttribute(second,fn.nodeName,name,fn.getAttribute(name));
|
||||
@ -1266,7 +1268,7 @@ class TWin
|
||||
|
||||
let str='';
|
||||
str+='<table id="TWin_TBL_'+this.tWinId+'" class="shadow" border="0px" cellspacing="0" cellpadding="0" style="width: 100%; height: 100%; border: 1px solid #000000;">';
|
||||
str+=' <tr id="TWin_H0_'+this.tWinId+'" style="background: url(../resources/metadata/dbms/form/'+imgB+') repeat-x;"><td></td><td><table cellspacing="0" cellpadding="0" style="width: 100%; height: 29px;"><tr><td id="TWin_Ca_'+this.tWinId+'" style="vertical-align: middle; cursor: move; font-weight: bold; white-space: nowrap;"></td><td style="width: 10px; vertical-align: middle;"><img src="../resources/metadata/dbms/form/'+imgX+'" id="TWin_CL_'+this.tWinId+'" style="cursor:pointer;padding-right: 5px;"></td></tr></table></td><td></td></tr>';
|
||||
str+=' <tr id="TWin_H0_'+this.tWinId+'" style="background: url(../resources/metadata/dbms/form/'+imgB+') repeat-x;"><td></td><td><table cellspacing="0" cellpadding="0" style="width: 100%; height: 29px;"><tr><td id="TWin_Ca_'+this.tWinId+'" style="vertical-align: middle; cursor: move; font-weight: bold; white-space: nowrap;"></td><td style="width: 10px; vertical-align: middle;">'+(this.disableClosing ? '' : '<img src="../resources/metadata/dbms/form/'+imgX+'" id="TWin_CL_'+this.tWinId+'" style="cursor:pointer;padding-right: 5px;">')+'</td></tr></table></td><td></td></tr>';
|
||||
str+=' <tr>';
|
||||
str+=' <td style="width: 5px; height: 5px;'+(!this.dialog ? ' cursor:nw-resize;' : '')+'" id="TWin_TL_'+this.tWinId+'"><img src="../resources/metadata/dbms/form/5.gif" alt="" style="display: block;" border="0px" draggable="false"></td>';
|
||||
str+=' <td style="vertical-align:top;height: 5px;'+(!this.dialog ? ' cursor:n-resize;' : '')+'" id="TWin_T_'+this.tWinId+'"></td>';
|
||||
@ -1303,8 +1305,12 @@ class TWin
|
||||
this.setSel();
|
||||
|
||||
this.div.onmousedown=function(thiz){ return function(e){ thiz.setSel(); } }(this);
|
||||
|
||||
document.getElementById('TWin_CL_'+this.tWinId).onclick=function(win){return function(){ win.Close(); };}(this); //Закрыть окно
|
||||
//Кнопка закрыть окно
|
||||
let obj=document.getElementById('TWin_CL_'+this.tWinId);
|
||||
if(obj!=null){
|
||||
//obj.onclick=function(win){return function(){ win.Close(); };}(this);
|
||||
obj.onclick=(function(){ this.Close(); }).bind(this);
|
||||
}
|
||||
|
||||
if(!this.dialog)
|
||||
{
|
||||
@ -1333,7 +1339,7 @@ class TWin
|
||||
|
||||
setCaption(val)
|
||||
{
|
||||
var obj=document.getElementById('TWin_Ca_'+this.tWinId);
|
||||
let obj=document.getElementById('TWin_Ca_'+this.tWinId);
|
||||
if (typeof val === 'string' || val instanceof String)
|
||||
obj.innerHTML=val;
|
||||
else
|
||||
@ -1475,7 +1481,7 @@ class TWin
|
||||
//Переместить окно на передний план (Обычно при щелчке на нём)
|
||||
setWinZ(s)
|
||||
{
|
||||
var i;
|
||||
let i;
|
||||
this.setZ(Wins.getMaxZ()+2); //+2 это для тени
|
||||
if(s && this.parent!=null) //Переносим текущий элемент в 0й элемент массива детей родительского
|
||||
{
|
||||
@ -1483,7 +1489,7 @@ class TWin
|
||||
for(i=1;i<this.parent.childs.length;i++)
|
||||
{
|
||||
if(tmp==this) break;
|
||||
var t=this.parent.childs[i];
|
||||
let t=this.parent.childs[i];
|
||||
this.parent.childs[i]=tmp;
|
||||
tmp=t;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user