Posts by Sergio Camillo Jr • 11 points
3 posts
-
0
votes1
answer115
viewsA: Rounding error
Try to replace the comma per point in the price field before converting to float. As I did below. function add(_quant, _preco, _total, _estoque) { quantidade = parseInt($("#"+_quant).val()); estoque…
javascriptanswered Sergio Camillo Jr 11 -
0
votes1
answer157
viewsA: 3D Visualization at Angular Google Maps
I don’t know how to make Google display in a 3D way, but spinning I was able to put together an example. Maybe what you can do is change the slope on the property tilt, to appear 3D, in this example…
-
1
votes3
answers123
viewsA: Contains within a list
If you don’t have a restriction to use LINQ, maybe the expression below will help. List<int> idAcessoriosSelect = (from f in model.AcessoriosFiltroList where f.Selecionado == true select…