this is how we i am formating the edited value of listgrid field upto the desired precision value
formatEditorValue: "isc.Format.toUSString(value, record.precision)",
so the formatted value looks like 1,000 for all the values more than 999
problem is that whenever we try to edit the above for greater than 999 it gives an error sign, yellow triangle warning sign, statting that enter decimal values since toUSFormat puts comma as well.
what is the good way to roundoff the listGrid field?
formatEditorValue: "isc.Format.toUSString(value, record.precision)",
so the formatted value looks like 1,000 for all the values more than 999
problem is that whenever we try to edit the above for greater than 999 it gives an error sign, yellow triangle warning sign, statting that enter decimal values since toUSFormat puts comma as well.
what is the good way to roundoff the listGrid field?
Comment