Hi All,
I want to add a column setting for rounding number in 2 decimal points. How we can handle in a proper way? I tried to code as below,
{ field: 'gas', editType: 'numericedit', editParams: { decimalPlaces: 2 }, format: "{0:n2}", validationRules: { required: true, min: 10, max: 10000 }, width: 80 },
OR
{ field: 'gas', edit: { params: {decimals: 2, format: 'N' } },
Those codes didn't work for me.
Note: I'm using Batch Edit mode, Column settings are loaded from [columns] property (Not in the html)
Thank you.