Delete types

This commit is contained in:
2021-09-13 20:31:56 +06:00
parent f0fa97a2ff
commit e1a4f954fd
80 changed files with 692 additions and 641 deletions

View File

@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Tree</title>
<style type="text/css">
<style>
html,body,div
{
height:100%;
@ -13,9 +13,9 @@
text-align: left;
}
</style>
<script type="text/javascript" src="../dbms/tools.js"></script>
<script type="text/javascript" src="tree.js"></script>
<script type="text/javascript">//<![CDATA[
<script src="../dbms/tools.js"></script>
<script src="tree.js"></script>
<script>//<![CDATA[
function onloadpage()
{
tree=new TTree(document.getElementById("maintree"),"tr_","tree.php","./",24);

View File

@ -264,7 +264,7 @@ function TMenu(v_obj,v_scr,v_treepath) //Горизонтальное меню
//Создаём HTML кнопку
cdiv=document.createElement('div');
cdiv.setAttribute('id',this.m_pr+tn.htmlid+'bt');
cdiv.style.cssText="width: 100%; display: inline-block;";
cdiv.style.cssText="width: 100%; display: block;";
cnt.appendChild(cdiv);
//if(nodeTree.getAttribute('visible')=='0') cdiv.style.display='none'; //Видимость кнопки
@ -424,7 +424,7 @@ function TMenu(v_obj,v_scr,v_treepath) //Горизонтальное меню
//создаём кнопку меню
cdiv=document.createElement('div');
cdiv.style.cssText="width: 100%; display: inline-block;";
cdiv.style.cssText="width: 100%; display: block;";
pdiv.appendChild(cdiv);
if(nodeTree.getAttribute('visible')=='0') cdiv.style.display='none';
cdiv.innerHTML=str;
@ -615,7 +615,7 @@ function TMenu(v_obj,v_scr,v_treepath) //Горизонтальное меню
//Создаём самый верхний контейнер с 0м HTMLID
var cnt=document.createElement('div');
cnt.setAttribute('id',this.m_pr+this.m_root.htmlid+'tb');
cnt.style.cssText="width: 100%; display: inline-block;";
cnt.style.cssText="width: 100%; display: block;";
cnt.innerHTML='<nobr id="qwery"><img src="../resources/metadata/tree/icons/loading.gif" alt=" "><font color="#999999"><b> Подождите пожалуйста...</b></font></nobr>';
this.m_obj.appendChild(cnt);
}