Posts by Alisson Diel • 161 points
5 posts
-
1
votes1
answer285
viewsA: Problems picking up accentuated files on Tomcat 8!
Solved, I had to put URIEncoding="ISO-8859-1 in conf/server.xml, unlike what I found on the internet that spoke to put "UTF-8":…
-
4
votes2
answers366
viewsA: Remove Focus from input when it is with attr readonly
You can treat this with Javascript, follows a solution for you: function minhafuncao(teste){ if(document.getElementById('idinput').readOnly==false){ //seu comando alert(teste); } } <input…
-
3
votes1
answer42
viewsA: Help with Web Form Update
Dude, simple beeem problem, it is not entering the _POST condition because the name="'update'" is double-quote: <button class="btn waves-effect waves-light" type="submit" name="'atualizar'">…
-
3
votes6
answers906
viewsA: Convert text from div to number
var texto = document.getElementById('our_price_display').innerHTML; var numero = texto.replace(/[^\d,]/g, ''); document.getElementById('resultado').innerHTML =…
-
2
votes1
answer285
viewsQ: Problems picking up accentuated files on Tomcat 8!
I have the same application on Tomcat 7 and in the Tomcat 8, only in the Tomcat 8 is a problem, I’m src of an image but in the image files it has an "not found" error accentuation, it follows…