Field Name | Data Type |
---|---|
id | int (PK) |
name | varchar(255) |
price | double |
$this->col[] = ["label"=>"Name","name"=>"name"];
$this->col[] = ["label"=>"Price","name"=>"price","callback_php"=>'number_format($row->price)';
or
$this->col[] = ["label"=>"Name","name"=>"name"];
$this->col[] = ["label"=>"Price","name"=>"price","callback_php"=>'number_format([price])';
You can see we use callback_php . One think that you need to remember, don't use double quote instead use single quote.