Hello
I am using an UltraNumericEditor to display an amount field in my UI. Is there any way of allowing the user to enter 10M or 10m and the editor translating this into 10,000,000 when the user hits the enter key? Or 300T to be displayed as 300,000? etc etc
Thanks
Yes, you have to implement the IEditorDataFilter interface; there is a knowledge base article that demonstrates how to do something like this (how to have a percent symbol present in the data and convert the value accordingly), so you should be able to adapt that for your purposes.
Many thanks Brian, I'll check it out!