Closed gappc closed 1 month ago
This commit adds support for numbers (among others) to the InputCustom and StringCell.
InputCustom
StringCell
Example usage of StringCell in config:
{ title: 'Age', component: CellComponent.StringCell, objectMapping: { text: 'Age' }, params: { type: 'number' } }
In essence, you can set the type in the params property of the StringCell. That type will be promoted 1:1 to the underlying input HTML element.
type
params
input
This commit adds support for numbers (among others) to the
InputCustom
andStringCell
.Example usage of StringCell in config:
In essence, you can set the
type
in theparams
property of theStringCell
. That type will be promoted 1:1 to the underlyinginput
HTML element.