IObservableValue issue with data displayed in row(s)
Hi,
I have an IObservableValue inside a DataBindingContext that observes a double data type. When displaying the double value in swt Text object, the actual double value is rounded to three decimals.
Has anyone run into this? How do you go around this issue?
Example:
double myValue = 0.0006127 is displayed as 0.007. I need the exact double value to be displayed.
I tried to use a DecimalFormat and then convert it to String to display in Text object but the databinding context needs a IObservableValue.
Any idea?
Thanks,
JayDev