Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Alex on Aug 03, 2008 09:38
open dhtmlx forum
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
Answer posted by Support on Aug 04, 2008 05:24

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("<span>$</span><span style='padding-right:2px;color:"+color+";'>"+val+"</span>", val);

To necessary one

         this.setCValue("<span>US $</span><span style='padding-right:2px;color:"+color+";'>"+val+"</span>", val);