• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Announcement

Collapse
No announcement yet.

Money Formatting

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Money Formatting

    Can we get an option to round to the nearest dollar and eliminate the decimals?

    Thanx

    Dan

    p.s. In the meantime, is some some variation of Ext.util.Format.usMoney that will get me want I need?

  • #2
    You can do this with some code via custom formatting

    Code:
    var roundedAmount = Math.round(v);
    
    return '$' + roundedAmount;

    Comment


    • #3
      kewl.... thanx

      Comment

      Working...
      X