KoolReport's Forum

Official Support Area, Q&As, Discussions, Suggestions and Bug reports.
Forum's Guidelines

Commas in numbers #476

Open Jesus opened this topic on on Sep 20, 2018 - 1 comments

Jesus commented on Sep 20, 2018

Hi support,

When I create a table the values that are numbers a comma is added to them. Is there a way for that not to happen? I don't want to comma to be added. so if the number is 460015 I get this 460,015. I want 460015

Thanks Jesus

KoolReport commented on Sep 20, 2018

You can specify the column type as string:

Table::create(array(
    "columns"=>array(
        "myColumn"=>array(
            "type"=>"string"
        )
    )
));

Build Your Excellent Data Report

Let KoolReport help you to make great reports. It's free & open-source released under MIT license.

Download KoolReport View demo
solved

None