In my grid I have a column which is bound to a numberic
I want my column to display the numberic as currency (although I want to
store it as a number)
I have set my currency up:
set currency to '£'
I set my column inputmask propery up to be "$$9,999,999" format is none, but
when run it shows a $ i.e. $12,345.67, should this not show £12,345.67 ?
I have tried other combinations of format and input mask, none of which give
me what I want
format $, inputmask 9,999,999, result: "$ 12,345.67"
format $, inputmask $$9,999,999, result: "£$12,345.67"
format $, inputmask £9,999,999, result: "£ £12,345.67"
format <none>, inputmask £9,999,999, result: "£ £12,345.67"
format <none>, inputmask $$9,999,999, result: "$12,345.67"
format <none>, inputmask $9,999,999, result: "$ 12,345.67"
How can I get it to display "£12,345.67" ????
TIA,
Fergus.