| Cloud Business App Edition > Wijmo Control Extensions > Controls > Input > InputNumber |
InputNumber is a value control, which allows users to enter or edit numbers in a specified format, through a Cloud Business application. The Min and Max properties enable the developers to control the numbers entered by the end-users. The control can be customized to display spinner buttons to increment or decrement the numeric values in the control.
| Isml.js |
Copy Code
|
|---|---|
myapp.InputNumber.Freight1_render = function (element, contentItem)
{
var input = new c1.cba.Input($(element), contentItem);
};
|
|