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 7641585
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T08:57:41+00:00 2026-05-31T08:57:41+00:00

Is any solution in Jqgrid if there is negative number then show bracket ()

  • 0

Is any solution in Jqgrid if there is negative number then show bracket "()" ?

ex: show (23) if value was -23

thanks

  • 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-05-31T08:57:42+00:00Added an answer on May 31, 2026 at 8:57 am

    You can use custom formatter to do what you want. To format numbers or integers correctly you can call $.fmatter.util.NumberFormat method with $.jgrid.formatter.number or $.jgrid.formatter.integer as the second parameter. The example of the formetter is

    formatter: function (cellvalue, options) {
        var value = parseFloat(cellvalue), retult,
            op = $.extend({}, $.jgrid.formatter.number); // or $.jgrid.formatter.integer
    
        if(!$.fmatter.isUndefined(options.colModel.formatoptions)) {
            op = $.extend({}, op,options.colModel.formatoptions);
        }
        retult = $.fmatter.util.NumberFormat(Math.abs(value), op);
        return (value >= 0 ? retult : '(' + retult + ')') + ' €';
    }
    

    you can additionally change color or some other CSS style of displaying of the negative numbers. You can use cellattr property to add class or style attribute in the cells with negative numbers:

    cellattr: function (rowid, cellvalue) {
        return parseFloat(cellvalue) >= 0 ? '' : ' style="color:red;font-weight:bold;"'
    }
    

    The demo demonstrate the settings. The results are the following

    enter image description here

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

Sidebar

Related Questions

is there any solution to show user all countries and after select country it
Is there any solution to the following Struts 2 issue yet? link text Thanks
Is there any solution to overcome case-sensitive problem for contains method. I have code
My question is very simple: Is there any solution to install xCode, or equivalent,
Is there any persistence solution for Common Lisp, such as Elephant, that allows function
is there any solution on StageWebView.loadURL(), how I can handle URLs in HTML Pages
Is there any solution to embed a QLabel in QStatusBar using Qt Designer?
Is there any solution to make snippets, templates and maybe resources of MODx site
Is there any solution to disable Javascript style changes in print? For instance, if
is there any solution to get support of CSS Gradient in firefox 3.5 and

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.