Hello,
I would like to know if it is possible to define a limit of decimal numbers during edition in a table.
This is more or less the code that I am using to show the grid:
{
data: 'name',
type: 'text',
}, {
data: 'Currencyfactor',
type: 'numeric',
renderer: this._currencyRenderer,
numericFormat: {
pattern: '00,000',
},
},
];
return columnDefinitions;
As you see, I am setting the numbers of decimals in the numericFormat attribute and it works great, but I would like to avoid the users type more than 3 decimals. Is it possible to do it?
Thank you