Posts by RM08 • 31 points
5 posts
-
-1
votes1
answer20
viewsA: Function that recharges the page after another function
function goList(){ document.FrmTelaBranca.submit(); window.setTimeout(function () { // Redireciona para a pagina location.href = "list_wmsbdotpequipamentos.do"; }, 5000); } I did so, if I take out…
javascriptanswered RM08 31 -
0
votes1
answer20
viewsQ: Function that recharges the page after another function
Well I have a select that executes an onclick function when selecting a select option, it returns to a function called gotoRefresh, which executes a select in the database to bring data on the grid…
javascriptasked RM08 31 -
1
votes1
answer104
viewsQ: AVG Oracle returning very broken value
Speak my darlings, I’m making an oracle average with the AVG function... select avg (checkd) from table Only it sometimes returns a very broken number, for example…
-
1
votes0
answers43
viewsQ: Graphic does not change even passing data
I’m pulling data from the BD but it’s not appearing on the graph in the correct date fields, someone can take a look at my code see where I’m missing... I’ll leave some images ----------------…
-
-1
votes1
answer87
viewsQ: Doubt which variable to pass from my Select
I have two selects, both consult the database. I have Equipment, and Operations... When selecting equipment x in select, I will consult the database for the select Operations to pull only Operations…