I have a Kendo Grid with a list of products and their respective amounts. Each product may have a different decimal precision, but I don't know how to reflect this in the Grid. As far as I can figure out, it is only possible to set the format for the entire column.Currently, with format as {0:n2}, the Grid will display as:
While the desired result would look like:
Is it even possible to specify a different format for each row in Kendo Grid?
PRODUCT AMOUNT PRECISIONProduct A 10,00 0Product B 10,00 2Product C 10,00 3Product D 10,00 1While the desired result would look like:
PRODUCT AMOUNT PRECISIONProduct A 10 0Product B 10,00 2Product C 10,000 3Product D 10,0 1Is it even possible to specify a different format for each row in Kendo Grid?