Hi
I have a field in a Grid which shows currency for example: $25.54.
I want to change the Decimal Precision to 4 (Like $25.5432) , How can I do that. Here is my code which I am using.
Adding currencyPrecison:4 or decimalPrecision:4 doesn't work for me. The cell still shows only 2 decimal places. Can anyone please help me with a solution for this problem.Code:this.columns = [ { text : 'Item Rate', width : 100, dataIndex : 'eRate', renderer: 'usMoney', editor: { xtype: 'numberfield', allowBlank: false, minValue: 0, maxValue: 100000 }
Thanks
FunnyFox