Rounding values in a particular column
Rounding values in a particular column
trashbat
Posts: 2Questions: 1Answers: 0
Is there a way to force values in a given column to be displayed with rounding? Currently I'm iterating through my dataset and calling Math.round() on the values before passing it to the table, which doesn't seem like the optimal solution.
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
For display of a field, I use this
For rounding user edits (and data validation) before data submission, I use this
Exactly what I was looking for, thanks! :)