Skip to content
Nicholas K. Dionysopoulos edited this page Mar 22, 2015 · 1 revision

Integer Field

This will display a text input which expects a valid integer value. The field will be displayed as an integer spinner widget, forcing the user to select only one of the valid values as limited by the first, last and step attributes.

You can set the following attributes:

  • first Starting number (lowest selection value possible)

  • last Last number to show (highest selection value possible).

  • step Step for increasing the numbers.

For example, when using first=10, last=20 and step=2 you get a list of 10, 12, 14, 16, 18, 20. No other value can be entered.

Clone this wiki locally