I am using PhoneGap + Xcode to create an application. Is there a way to show UIKeyboardTypeDecimalPad when using this tag in HTML:
<input type="" />
Any workarounds, mods, tweaks?
You can add an input type = "number" and then a pattern = "[0-9] *" to call up the numeric keypad.
See documentation here
I think you can use
<input type="text" pattern="[0-9]*"></input>
or
<input type="tel"></input>
Hope this helps
Source: https://habr.com/ru/post/1263013/More articles:How to provide mongodb connection object for JasperFillManager.fillReport () - Spring MongoDB Jasper integration - javaTruncate seconds and milliseconds in SQL - dateFactors Affecting Translation Time - modelicaAlamofire network calls not making in background thread - multithreadingSet URL for canceled path when redirecting to 404 page using resolver - angularWhat is the purpose of the -m switch? - pythonA quick (vectorized) way to find points in one DF belonging to rectangles of the same size (given by two points) from the second DF - pythonWhat does it mean to "run the library module as a script" with the option "-m"? - pythonScope vs Runspace vs Session vs AppDomain - powershellTwo Spring projects to download using @SpringBootApplication - springAll Articles