Provides functionality for grid columns that display integer data.
Namespace: MindFusion.DataViews
File: IntegerType.js
SyntaxJavaScript
Copy Code
|
|---|
// class |
ExampleThe 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 |
Inheritance HierarchyMindFusion.DataViews.DataType
MindFusion.DataViews.IntegerType
MindFusion.DataViews.RealNumberType
See Also