
Re: Non-editable input editable when using touchscreen - bug?
Yeah, you're right, that isn't correct. We'll get it fixed, but in the meantime the workaround is simple:
Set the field's "Touchscreen Mode" (expert property) to "None", and then add the touchscreen logic yourself to the field's mousePressed event with something like this:
Code:
if fpmi.gui.isTouchscreenModeEnabled() and event.source.isEditable():
event.source.intValue = fpmi.gui.showNumericKeypad(event.source.intValue)