Input (text/number)
Regular Text or Number Editor
this.columnDefinitions = [
{
id: 'firstName', name: 'First Name', field: 'firstName',
editor: { model: Editors.text },
},
{
id: 'lastName', name: 'Last Name', field: 'lastName',
editor: { model: Editors.text },
},
{
id: 'age', name: 'Age', field: 'age',
editor: { model: Editors.integer },
},
];Demo with Float Editor and Dollar Currency Formatter
Last updated