Categories | Question details Back To List | ||
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. 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); |