In Rebol 2, in order to create a password text field it is possible to write
view [
field hide
]
How to do it in Rebol 3?
In Rebol 2, in order to create a password text field it is possible to write
view [
field hide
]
How to do it in Rebol 3?
Copyright © 2021 Jogjafile Inc.
You can use the
hide-inputfacet of text input widgets to control whether input is shown or not.There are two ways how to do this. First, you can override the facet directly in your layout specification:
Second, you can create a custom widget (let's call it
password) derived fromfieldbut overriding thehide-inputfacet:I hope that a
passwordwidget will eventually come bundled with stock R3-GUI.