• 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.

NITRO QUERY 5.1 FORMATTING NUMBERS : European format ??

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

  • NITRO QUERY 5.1 FORMATTING NUMBERS : European format ??

    can't find the standard formatting anymore in 5.1 .. (which was available in 5.0) to display numbers in european format.. (decimal point is comma, thousand sep = '.')

    sorry .. was a little too fast to post this..


    discovered that it is now a new button below the formatting options (whereas in 5.0 it was on top of window)..

    problem solved

    Last edited by ThierryC; 06-18-2017, 05:27 AM.

  • #2
    This was an oversight. You can work around this though by clicking the "Custom Formatting" button and setting the renderer as:

    Code:
    Ext.util.Format.thousandSeparator = '.';
    Ext.util.Format.decimalSeparator = ',';
    return Ext.util.Format.number(v,'0,000.00');
    We will add this to our internal list for an upcoming release.

    Comment


    • #3
      Hi Thierry, disregard my previous post (I will be deleting it). After having an internal discussion here I realized that this feature is in place. There is a cog wheel in the lower right side of the "Format" window. You will find a checkbox there to change the comma decimal separator.

      Comment

      Working...
      X