Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 680 Bytes

how-to-put-number-format.md

File metadata and controls

24 lines (20 loc) · 680 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