jinyistudio Well-Known Member Licensed User Longtime User Apr 12, 2017 #1 Hi I have two NUMBER of ABMInput. Could i hide their updown button !?
alwaysbusy Expert Licensed User Longtime User Apr 12, 2017 #2 You can use an INPUT_TEXT with an input mask only allowing numbers Upvote 0
jinyistudio Well-Known Member Licensed User Longtime User Apr 12, 2017 #3 Hi I dont' know how to setting inputmask !? Could you give me sample for only allowing numbers ! Upvote 0
alwaysbusy Expert Licensed User Longtime User Apr 12, 2017 #4 See the demo app and check out http://robinherbots.github.io/jquery.inputmask/ for more info how to build your masks e.g. B4X: Dim InputNumber As ABMInput InputNumber.Initialize(page, "InputNumber" & ID, ABM.INPUT_TEXT, InputTitle, False, "") InputNumber.Validate = False InputNumber.Align = ABM.TEXTALIGN_RIGHT InputNumber.InputMask = "'alias':'decimal', 'digits': 2" Upvote 0
See the demo app and check out http://robinherbots.github.io/jquery.inputmask/ for more info how to build your masks e.g. B4X: Dim InputNumber As ABMInput InputNumber.Initialize(page, "InputNumber" & ID, ABM.INPUT_TEXT, InputTitle, False, "") InputNumber.Validate = False InputNumber.Align = ABM.TEXTALIGN_RIGHT InputNumber.InputMask = "'alias':'decimal', 'digits': 2"