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

  • Home
  • SEARCH
  • 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 9006245
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T01:21:33+00:00 2026-06-16T01:21:33+00:00

$(#kendoGridView).kendoGrid({ width: 1500, dataSource: data.d, resizable: true, rowTemplate: height: 790, dataBound: dbGrid, selectable: true,

  • 0
$("#kendoGridView").kendoGrid({
                            width: 1500,
                            dataSource: data.d,
                            resizable: true,
                            rowTemplate:
                            height: 790,
                            dataBound: dbGrid,
                            selectable: true,
                            columns: [
                                            { title: 'Revenue', field: 'Revenue', width: '20%', sortable: true },
                                            { title: 'postals', field: 'postals', width: '12%', sortable: true },
                                            { title: 'MQC', field: 'MQC', width: '12%', sortable: true },
                                      ]
                        });

i am binding values from the database to kendoGrid.i want to set comma separator to all column numbers in grid(ex 458690 to 4,58,690).i have read NumberFormating concept in kendoui,but i have not got sufficiant information.how can i set.

  • 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-16T01:21:34+00:00Added an answer on June 16, 2026 at 1:21 am

    It depends of the culture that you are using but basically, you just have to add in your column a field format according to the documentation :

    $("#kendoGridView").kendoGrid({
        width: 1500,
        dataSource: data.d,
        resizable: true,
        rowTemplate:
        height: 790,
        dataBound: dbGrid,
        selectable: true,
        columns: [
            // Here I have added the format field
            { title: 'Revenue', field: 'Revenue', width: '20%', sortable: true, format: "{0:c3}" },
            { title: 'postals', field: 'postals', width: '12%', sortable: true },
            { title: 'MQC', field: 'MQC', width: '12%', sortable: true },
        ]
    });
    

    I have created this fiddle : http://jsfiddle.net/AHCbq/ .


    EDIT :

    It seems that even with a correct culture, some decimal fields are not correctly interpreted in the grid and that we can not applies a custom format.

    In order to workaround this issue, we have to create a custom parser in order to force the field to be seen as a decimal field. I have updated my previous fiddle : http://jsfiddle.net/AHCbq/7/ .

    This is achieved by adding a parser in the datasource.schema.parse which transform the string in a number :

    parse : function(data) {
        $.each(data.d.results, function(i, val) {
            // Here I convert the string in a decimal number
            val.Freight = +val.Freight;
        });
        return data;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.