Gets the column meta data object.
Namespace: MindFusion.DataViews
File: ArrayModel.js
SyntaxJavaScript
Copy Code
|
|---|
function columnMetaData (column) |
Number. The column index.
Map. A Map instance containing the column meta data.
ExampleThe following code uses the metadata of the second column in a grid model to set a custom editor:
JavaScript
Copy Code
|
|---|
| grid.model.columnMetaData(1).set("customEditor", { "autoComplete": true, "allowEmptyInput": true, "locale": localeObj }); |
See Also