Provides functionality for grid columns that display integer data.
Namespace: MindFusion.DataViews
File: IntegerType.js
JavaScript Copy Code |
---|
// class |
The following sample creates a Grid where one of the GridColumn-s is of IntegerType:
JavaScript Copy Code |
---|
var dv = MindFusion.DataViews; // create the grid columns var column1 = new dv.GridColumn("index"); var column2 = new dv.GridColumn("name"); var column3 = new dv.GridColumn("winnings"); var column4 = new dv.GridColumn("registered"); // create the grid control |
MindFusion.DataViews.DataType
MindFusion.DataViews.IntegerType
MindFusion.DataViews.RealNumberType