Hi,
As our API, we can assign a data type for each column. And I have a problem, I have some columns' data type are "integer/float", I can display integer/ float value directly and also have some auto validation can avoid user input and letter or other invalid value.
But now I want to add number format (the thousands comma) for each value. So the problem is if I change my value as "5,000", it will be a string and can't display on an "integer/float" type cell. I know I can change the data type to "string", but it's mean I need to add some validation manually.
-----------------------------
I found "render" can solve my problem. And it works well now.
Thank you!