Grid Currency Cells

Hello friend,



I would like to change label of currency in cells, is possible? For example: Change Symbol “$” for it “US $” or “�” (euro).



Thanks,

Alex


You can create a custom cell, with any custom rule formatings.
There is no way to change use character through API, but you can edit dhtmlxgridcell.js and change next line



this.setCValue("$"+val+"", val);


To necessary one


this.setCValue(“US $”+val+"", val);