How to enter only numbers in QML in TextField
-
wrote on 19 Aug 2019, 20:01 last edited by
Hi!
How in QML in TextField to make the ability to enter only numbers? -
Hi,
Since you only want to input numbers, wouldn't a SpinBox make more sense ?
-
wrote on 19 Aug 2019, 22:13 last edited by
Or look at inputMethodHints property.
-
wrote on 20 Aug 2019, 04:36 last edited by
@mikeeeeee Use an
IntValidator
https://doc.qt.io/qt-5/qml-qtquick-intvalidator.html
TextField { //... validator: IntValidator {bottom: 1; top: 100} }
1/4