Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Latest commit

 

History

History
22 lines (18 loc) · 482 Bytes

how-to-put-number-format-callback.md

File metadata and controls

22 lines (18 loc) · 482 Bytes

Callback

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"=>function($row) {
return number_format($row->price);
}];

What's Next

Table Of Contents