Posts by josecarlos • 119 points
10 posts
-
1
votes1
answer359
viewsQ: Error generating APK using Quasar framework
I am trying to generate the APK of an application made with Quasar Framework, but I get the following error: $ quasar build -m cordova -T android Checking Java JDK and Android SDK versions…
-
0
votes1
answer36
viewsQ: Check that all items have the same value
Hello, how to check if all items "estoqueLevel" has the same value ("0" in the case). $.each(JSON.parse(response), function (i, modosEntrega) { for (var i in modosEntrega) { var foraEstoque =…
-
0
votes1
answer116
viewsQ: Check which items in json have a certain value
Hello, how to check which items have value equal to 0 (stock 0), json and loaded by ajax. $.each(JSON.parse(response), function (i, deliveryTypes) { for (var i in deliveryTypes) {…
-
1
votes2
answers47
viewsQ: validation of multiple selects
How I check if all selects have been selected? First I check if it is different from select, user needs to mark a different option from "select". Then I need to check that all selects are different…
-
1
votes1
answer883
viewsQ: recover id value from select and get the selected value from that select
Hello, my question is to store an id and a select and options value in a variable. have that structure: <div class="col-sm-6" id="results"> <select class="form-control" id="1">…
-
0
votes0
answers162
viewsQ: Sending form with ajax json
Hello, my question is about sending a form via ajax. I would like to take these form elements and send via ajax. I need to save and send the form data, the "grid", and the question and answer of…
-
1
votes1
answer71
viewsQ: increment event after a certain time
I am making an application that simulates a point marker, and I would need it to increase the next mark only after 5 minutes, I did some tests with setTimeout, but I didn’t get what I needed. The…
-
1
votes1
answer620
viewsQ: Make screen reader read text from image alt
Hello my question is about accessibility: I am making the accessibility of a page and in it I have an image with a link, I am using the Jaws screen reader to go through all defined elements. One of…
accessibilityasked josecarlos 119 -
2
votes0
answers132
viewsQ: Dynamically change video URL inside Lightbox window
Hello, my question is about dynamic video url change. When clicking on a function (open lightbox) opens a lightbox window, and inside this janaela I need to open video dynamically, today opens a…
-
3
votes1
answer686
viewsQ: Validate field with integer value, in decimal format (check if value is less than)
Hello, my question is about a field validation for decymal value. If the value is less than 500,00 I show an error message, otherwise I pass to the second field, so the person type the value already…