Display numeric field without comma

For Leap 9.2.0, Is there a way for a numeric field not to display the comma? I have it set to Integer now.

Users need the field to be numeric, but do not want to comma to be displayed on the form.

The only way to do that would be to use a SingleLine Entry and then specify a format to restrict the input to numbers. Use the Format "^[0-9]*$" (without the quotes)

Thanks for your reply, Chris.