String combo

This commit is contained in:
2023-03-13 08:51:51 +06:00
parent b8f655f69b
commit 4aa9eaa9d3
3 changed files with 92 additions and 12 deletions

View File

@ -541,7 +541,7 @@ class SRec
let td,tr,td1,td2;
let nodeFilter=null;
let tablefilter=document.getElementById('idfilter'+this.uid);
if (tablefilter.tBodies==null) alert2(trt('Alert'),'tablefilter=null');
if (tablefilter==null || tablefilter.tBodies==null) alert2(trt('Alert'),'tablefilter=null');
let nodeType=findFirstNode(node, "type");
this.f_pI=nodeType.getAttribute("ins");//access rights
this.f_pU=nodeType.getAttribute("upd");
@ -1411,7 +1411,7 @@ class SRec
}
let rec=new SRec();
rec.opener=this;
rec.create();
rec.create(null);
//rec.f_State=1; TODO then finish the job
//rec.f_PropName=nodeColu.getAttribute("n");
rec.f_Settings=settings;
@ -1444,7 +1444,7 @@ class SRec
//Settings.add(0,xmlString)
//wishWin = window.open("showrecord.html?name="+typeName,typeName,"width=800,height=600,menubar=no,location=no,resizable=yes,scrollbars=yes");
let rec=new SRec();
rec.create();
rec.create(null);
//rec.f_State=1; not used
//rec.f_PropName=propname; not used
rec.f_Settings=xmlString;