Convert number format ###,###.00

I have a number and want it show it on datagrid like below:
100000.14 => 100,000.14
100000.00 => 100000

attribute column datagrid :
, format: gridnauto.format, editParse: gridnauto.editParse, editFormat: gridnauto.editFormat

Hello, @duynq2197

To display the required format use Custom number format for editors. By setting different values to their properties you will get the desired result.

Below there are two snippets. The first one has data with a comma groupDelimiter both in datatable and while editing. The second one has a comma groupDelimiter in datatable but without separate while editing.

https://snippet.webix.com/sew9hbxm
https://snippet.webix.com/l27kbkkg

Correct!!! Thanks