Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9099075
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T00:31:22+00:00 2026-06-17T00:31:22+00:00

According to the docs, I should be able to use the mask attribute to

  • 0

According to the docs, I should be able to use the mask attribute to format my column:

<cfgridcolumn name="salary" type="numeric" mask="$999,999">

I have a salary amount I want to show as

$100,000
 $80,000
  $5,000

Any ideas why its not working?

Full code snipit for testing below.

<cfscript>
        rs = QueryNew('salary', 'integer');
        QueryAddRow(rs,3);
        QuerySetCell(rs, 'salary', '100000', 1);
        QuerySetCell(rs, 'salary', '80000', 2);
        QuerySetCell(rs, 'salary', '5000', 3);
</cfscript>

<cfform>
    <cfgrid format="html" name="demo" query="rs">
        <cfgridcolumn name="salary" type="numeric" mask="$999,999">
    </cfgrid>
</cfform>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T00:31:23+00:00Added an answer on June 17, 2026 at 12:31 am

    I need to give props to @Henry for this answer that I found here and applied to your case. I had not used this before but I tested it and it does work (using CF9). See this other reference that I found as well. Interesting stuff. Anyway…

    For your issue try this code:

    <html>
        <head><title>Test</title></head>
    <body>
    <cfsavecontent variable="formatGridInit">
    <script language="javaScript">
    formatgrid = function() {
        var myFormatter = Ext.util.Format.numberRenderer('$000,000');
        var mygrid = ColdFusion.Grid.getGridObject('demo');
        var cm = mygrid.getColumnModel();
        cm.setRenderer(0, myFormatter);
        mygrid.reconfigure(mygrid.getStore(),cm);
    };
    </script>
    </cfsavecontent>
    <cfhtmlhead text="#formatGridInit#">
    <cfset ajaxOnLoad("formatgrid")>
    
    <cfscript>
            rs = QueryNew('salary', 'integer');
            QueryAddRow(rs,3);
            QuerySetCell(rs, 'salary', '100000', 1);
            QuerySetCell(rs, 'salary', '80000', 2);
            QuerySetCell(rs, 'salary', '5000', 3);
    </cfscript>
    
    <cfform>
        <cfgrid format="html" name="demo" query="rs">
            <cfgridcolumn name="salary" type="numeric">
        </cfgrid>
    </cfform>
    </body>
    </html>
    

    NOTE – Make sure your HTML has <head></head> in order for the <cfhtmlhead> to work.

    NOTE – The grid name in this code var mygrid = ColdFusion.Grid.getGridObject('demo'); must match your grid’s name.

    NOTE – Set the number in this code cm.setRenderer(0, myFormatter); to the column that you want to apply the format to (columns in the grid are zero based).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

According to the docs here I should be able to use Y.one(#container).appended( newImages, function(){
According to docs at http://code.google.com/p/minify/wiki/UriRewriting $min_serveOptions['rewriteCssUris'] = false; I should be able to add
According to the docs String text = String.format(%5.1e, 3.1415f); Should produce something like 3.1E+00
According to this section in the Django docs I should use {% blocktrans %}
According to the Mac Dev Center docs, you should be able to set the
According to the docs I should be able to have Twilio initiate a call
According to the docs I should be able to simply define this in my
According to the docs, I should be able to handle key events like keypress
I am trying to use the Nancy addin Nancy.LightningCache According to the docs I
According to the DBUnit docs link it should support using a CLEAN_INSERT when using

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.