new
This commit is contained in:
@ -357,8 +357,18 @@ class EdtRec
|
||||
|
||||
}
|
||||
td2.appendChild( table );
|
||||
|
||||
}else
|
||||
|
||||
}else
|
||||
if(vt=="password")
|
||||
{
|
||||
input = document.createElement('input');
|
||||
input.style.cssText="width: 100%;";
|
||||
input.setAttribute("type","password");
|
||||
input.setAttribute("name",nodeProp.getAttribute("n"));
|
||||
input.setAttribute("value",value);
|
||||
input.setAttribute("id","prop_"+this.uid+"_"+nodeProp.getAttribute("n"));
|
||||
td2.appendChild( input );
|
||||
}else
|
||||
if(vt=="b")
|
||||
{
|
||||
var select = document.createElement('select');
|
||||
@ -995,7 +1005,7 @@ class EdtRec
|
||||
}else
|
||||
{
|
||||
//We request the field title by the field id (if it is filled).
|
||||
if ((value!="")&&(value!=-1))
|
||||
/*if ((value!="")&&(value!=-1))
|
||||
{
|
||||
var xml='<?xml version="1.0" encoding="utf-8"?><metadata fn="6"><type n="'+nodeProp.getAttribute("ot")+'" c="'+nodeProp.getAttribute("FieldCaption")+'" pn="'+nodeProp.getAttribute("n")+'" fn="'+nodeProp.getAttribute("fn")+'" id="'+value+'">';
|
||||
xml+='<objects-list><filter><column n="'+findFirstNode(this.nodeMetadata, 'type').getAttribute('ObjectID')+'"><![CDATA['+value+']]></column></filter></objects-list>';
|
||||
@ -1004,7 +1014,7 @@ class EdtRec
|
||||
{
|
||||
this.showProgressBar();
|
||||
}
|
||||
}
|
||||
}*/
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user