capitalization - QML TextField how to capitalize the text -
in qml how can have text input box automatically converts inputted text capitals? following doesn't work:
textfield { id: myfield objectname: "myfield" ... font.pixelsize: 20 font.capitalization: font.alluppercase .... }
you made typo in name of constant should font.alluppercase
lower c
. if @ logs should see warning this:
tsttxtfield.qml:22: unable assign [undefined] int
Comments
Post a Comment