Posts by Jeordane Batista • 54 points
3 posts
-
-1
votes3
answers1831
viewsA: How to compare variables using Javascript?
You will need to check which type of value item[l].item[1]. Type string: If it’s "01," you’ll have to do it this way if(valor item[l].item[1] === "01")... Type Int: If it’s 1, you’ll have to do it…
-
2
votes3
answers3159
viewsA: Add SOAP Header to SOAP C#
Try to do it this way: ProdutoCadastroService.ProdutosCadastroSoapClient produtoCadastroWS = new ProdutoCadastroService.ProdutosCadastroSoapClient(); autenticaWsHeader(produtoCadastroWS); private…
-
2
votes1
answer164
viewsA: Ionic record audio not back to view
Rodrigo, Boa Noite, I recommend using the following audio recording plugin: Cordova-plugin-media-with-Compression(https://github.com/remoorejr/cordova-plugin-media-with-compression). I’ve used and…