Posts by Fabberg • 65 points
3 posts
-
0
votes1
answer178
viewsQ: Socket Error in get https request
I use Java 6. I was doing the integration with IBPT and I used this code: URL url = new URL("http://iws.ibpt.org.br/api/deolhonoimposto/Produtos?"); InputStream input = url.openStream(); It worked…
-
1
votes1
answer2613
viewsQ: Get Inputs with type="money"
$(function() { $("input[name*='pvn'").maskMoney({ thousands : '.', decimal : ',' }); }) I do this to pick up inputs with name='pvn' and apply a mask, but I would like to apply this mask to all…
-
5
votes1
answer1115
viewsQ: Input loading data from Modal
Good afternoon! I’m trying to make a modal to fetch the products and assign it to the input. Idea: When I click on the input, it opens the modal. Then I choose the product in the modal and it loads…