Hi,
Some DB rows have salary data but some do not. The column is of type int. When it is set to null in the database, the value is displayed as 0.00 in the grid. How can I show as an empty string?
Secondly, I am calculating footer row summaries for average values. if some values are displayed as 0.0, this drags down the average. I guess I need some custom JS code to calculate this value which discards the 0.0 values?
thanks
Gary
It will need custom formatter and number formatter does not support it.
Refer this demo code:
https://gist.github.com/gridphp/2e1628aeb7a2ca744076e4867e85a73f
Line 31-32 and 56-78
About footer summary, yes custom code will be required to skip blank.
You can refer this code sample:
https://www.gridphp.com/demo/demos/appearance/footer-row.phps 236-247
Let me know if you have any query,

