In a wxPython application I m developing I need a lot of input fields for numbers (integers and floats), so I tried using wx.lib.masked.NumCtrl, but my users now tell me that it s quite uncomfortable to use (and I agree with them).
Is there an alternative widget implementation I can use, or should I just roll my own, starting from a bare TextCtrl?
(wxPython 2.8.9.1)
Edit
For completeness, here s an example of "uncomfortableness":
given a NumCtrl with selectOnEntry
and fractionWidth > 0
, when you switch to the decimal part of the field, it gets correctly selected, but pressing numbers doesn t do anything, you have to delete the contents of the field first.