Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
300
Formatting Column Data
posted

I am trying to format some column data for my grid.  Here is a sample code

autoGenerateColumns: false,

         columns: [

            { headerText: "Order #", key: "OrderNumber", dataType: "string" },

            { headerText: "Name", key: "CompanyName", dataType: "string" },

            { headerText: "Status", key: "OrderStatus", dataType: "string" },

            { headerText: "Total", key: "OrderTotal", dataType: "number", format: "currency" }

        ]

I am assuming that the format should look that way for the total, but it isn't working.  I couldn't find any code examples just the method on the help site.

thanks,

sy