Posts by dds • 41 points
5 posts
-
-4
votes1
answer63
viewsQ: How to open the gmail app on mobile
I know that to open the maps is like this: window.location = "geo:?q="+endereco; To open the phone dial is like this: window.location = "tel:"+telefone1; To open the message screen (sms):…
-
0
votes1
answer48
viewsQ: How to get from last record to first
I have these names on my chart: nome ----- A B C D E F If I do: SELECT nome FROM tabela he will return me "A, B, C, D, E, F". I’d like you to return me backwards, from the last record to the first.…
-
2
votes2
answers72
viewsQ: Order registration by name in alphabetical order
I have some entries that you have the option to filter alphabetically by name. I enter these entries through the append like this: $(".listagem").append( `<div class="row" id="corpo-cartoes">…
-
1
votes3
answers61
viewsQ: Order newly added entries dynamically
I do this query in the database to list all the names of the registrations... $('.ordenar').click(function(){ db.transaction(function(tx){ tx.executeSql('SELECT nome FROM cartoes', [],…
-
1
votes1
answer147
viewsQ: Add materialize chip if user forgets to click enter
I have a registration screen that has a tag field.. As it fills and presses enter, it looks like this: Let’s assume he registered, but forgot to enter a tag, for example: This tag will be lost, when…