Commit 84cfdd74a3fd01672836273ef046d813a5a76d93

Authored by Edmar Moretti
1 parent 8e6365b1
Exists in master

atualização do codigo

ferramentas/vinde/index.js
... ... @@ -107,7 +107,7 @@ i3GEOF.vinde = {
107 107 catch(e){
108 108 if(typeof(console) !== 'undefined'){console.error(e);}
109 109 }
110   - titulo = "<table><tr><td><b>INDE-Br</b></td><td></td></tr></table>";
  110 + titulo = "<table><tr><td>INDE-Br</td><td></td></tr></table>";
111 111 d = {html:titulo};
112 112 tempNode = new YAHOO.widget.HTMLNode(d, root, true,true);
113 113 tempNode.enableHighlight = true;
... ... @@ -155,6 +155,11 @@ i3GEOF.vinde = {
155 155 }
156 156 };
157 157 criaNo(dados.arvore,tempNode);
  158 + //adiciona um no para expandir o espaco onde fica a arvore
  159 + titulo = " ";
  160 + d = {html:titulo};
  161 + tempNode = new YAHOO.widget.HTMLNode(d, root, true,true);
  162 +
158 163 if(arvore){
159 164 tempNode.collapseAll();
160 165 arvore.draw();
... ...
ferramentas/vinde/wmsindejson.php
... ... @@ -100,6 +100,10 @@ $final = array(
100 100 "layers"=>$layers,
101 101 "arvore"=>$arvore
102 102 );
  103 +//teste
  104 +$final = json_encode($final);
  105 +$final = json_decode($final);
  106 +
103 107 error_reporting(0);
104 108 ob_end_clean();
105 109 if(extension_loaded('zlib')){
... ...