Posts by Henrique Oliveira • 41 points
6 posts
-
0
votes1
answer148
viewsA: Break For inside an IF
Both ifs has a return inside, it makes it never arrive in the break. I suggest you remove both returns so the code will reach the break normally.…
javascriptanswered Henrique Oliveira 41 -
0
votes1
answer78
viewsA: Capture only line
It would suit your case if you insert a line dynamically each time the user finishes filling the modal data? By clicking on the unidade open the modal with the fields to be completed, after filling…
-
3
votes2
answers51
viewsA: I can’t check the text boxes
Calculating the BMI Try to call only the method calculaIMC() at the time of the submit and within it put the validations before calculating the BMI. Validating whether the field has been filled The…
javascriptanswered Henrique Oliveira 41 -
0
votes3
answers726
viewsA: Click a <tr> to open a link
I don’t really like to mix javascript with Razor, but just try to include this function in your script, replacing the action and controller of the Url.Action method with the one you want to…
-
0
votes1
answer1502
viewsQ: How to create a rounded button in Xamarin.Forms
I’m needing to create a rounded button in Xamarin.Forms similar to the main one of the material design, but without losing the properties of a conventional button and without losing the feature of…
-
1
votes0
answers332
viewsQ: Geolocator Plugin Xamarin
I need to get the current location of the user’s device and with this to help me I am using the Geolocator Plugin of Xamarin, I can get the current location normally on my smartphone but the Google…