What I’m trying to do:
If I have a text box with the type “Number” , small scrolls within the textbox area will increment that number. I’m trying to disable that. This does not happen in the debugger, only the production application.
What I’ve tried and what’s not working:
Searching the forum, adding a change event.
You could always monkey-patch the TextBox component by deepcopying it, modifying its behavior, then overriding (re setting) the built in TextBox object with the “new” modified one.
Or build a new class using inheritance, etc, etc… but if I’m monkey patching something I’m usually doing something lazy to begin with.
It would have to be done before the forms __init__ I would think.