Maslosoft Framework Logo Maslosoft Framework Documentation
Flexible Application Foundation


Integer Renderer

Currently there is only form renderer available: Integer

Integer form renderer. This will limit input data to integer numbers only, with optional range limitation.

Basic usage:

@FormRenderer(Integer)

Using with limiting from one to ten:

@FormRenderer(Integer, 1, 10)

The first parameter is minimum value allowed, while the second one defines maximum value. Pass null as an argument to ignore it.

Using with only maximum value:

@FormRenderer(Integer, null, 10)