Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 775 Bytes

how-to-put-number-format.md

File metadata and controls

27 lines (22 loc) · 775 Bytes

How To Put Number Format at Grid Data Column

Table : Products

Field Name Data Type
id int (PK)
name varchar(255)
price double

Products

$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.

What's Next

Table Of Contents