Datatable Number format with autoConfig true?

How can I set the data format ( number) like 1,000.00
while I have autoConfig: true

Hello @Undisplay ,
You can get a column’s config via table.getColumnConfig("columnId").
Check the example: Code Snippet .

Is there a way to set every column at once?
(Only if it’s numberic)

You could iterate over all visible columns via eachColumn : Code Snippet .

@Undisplay ,
It’s also possible to define a format as a function that accepts the raw values. You could check the type of a value and format only numbers or write any other logic by your needs : Code Snippet .