1

Topic: if choosing an interger for the input field, only numbers work

you cant put a decimal point in if the field is set to integer. setting the field to string allows it. I think its a bug.

2

Re: if choosing an interger for the input field, only numbers work

It is not a bug....

By definition, an Integer is any whole number, integers do not have a fractional component.

If you look at the options for an "Edit field" control, you will see that it has "Integer", "Float", and "String" for the data-type selection.

"Float" is the C++ name for a number that can have a decimal point and a fractional part. It is short for "floating point".

2B, or not 2B, that is the pencil ...

3

Re: if choosing an interger for the input field, only numbers work

TIL...thank you.