Commit 1494bbafeb11a869af50e1a3a5e1c65c5efd6330

Authored by Edmar Moretti
1 parent 5da949e9

--no commit message

ferramentas/parametrossql/index.js
... ... @@ -270,14 +270,15 @@ i3GEOF.parametrossql = {
270 270 p = i3GEO.editorOL.layerPorParametro("LAYERS",camada.name);
271 271 //muda os parametros
272 272 if(p){
  273 + $i("i3GEOFparametrosSqlAplicar").innerHTML = "Aguarde...";
273 274 reg = new RegExp("plugin" + "([=])+([a-zA-Z0-9_]*)");
274 275 p.url = p.url.replace(reg, "");
275 276 p.url = p.url + "&plugin=" + valores.join(",");
276 277 p.setUrl(p.url+"&");
277   - i3GEO.janela.destroi("i3GEOF.parametrossql");
278 278 p.setVisibility(false);
279 279 p.setVisibility(true);
280 280 }
  281 + i3GEO.janela.destroi("i3GEOF.parametrossql");
281 282 }
282 283 },
283 284 cancela: function(){
... ...
ferramentas/parametrossql/template_mst.html
1 1 <div style='margin-left: 5px;'>
2 2 <div id='i3GEOFparametrosSQLForm'></div>
3 3 <br><br>
4   - <input id='i3GEOFparametrosSqlAplicar' type='button' value='Aplicar' />
  4 + <input id='i3GEOFparametrosSqlAplicar' type='button' value='Aplicar' style='display: block;'/>
5 5 </div>
6 6 \ No newline at end of file
... ...