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

Commit

Permalink
add callback documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
fherryfherry committed May 2, 2017
1 parent d7b06ac commit f3c2c74
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
22 changes: 22 additions & 0 deletions docs/en/how-to-put-number-format-callback.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Callback

### Table : Products
| Field Name | Data Type |
| ---------- | ----------- |
| id | int (PK) |
| name | varchar(255) |
| price | double |

### Products
```php
$this->col[] = ["label"=>"Name","name"=>"name"];
$this->col[] = ["label"=>"Price","name"=>"price","callback"=>function($row) {
return number_format($row->price);
}];
```

## What's Next
- [How To Make A Subquery Column in Grid Data](./how-to-make-subquery.md)

## Table Of Contents
- [Back To Index](./index.md)
3 changes: 2 additions & 1 deletion docs/en/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
- **Grid Data Column Section**
- [How To Add Column In Grid Data](./how-to-add-column.md)
- [How To Join Table In Grid Data](./how-to-join-in-grid-data.md)
- [How To Put Number Format In Grid Data Column](./how-to-put-number-format.md)
- [How To Put Number Format In Grid Data Column (callback_php)](./how-to-put-number-format.md)
- [How To Put Number Format In Grid Data Column (callback)](./how-to-put-number-format-callback.md)
- [How To Make A Subquery Column in Grid Data](./how-to-make-subquery.md)
- [How To Add More Action Button In Grid Data](./how-add-more-action-button.md)
- [How To Add More Bulk Action In Grid Data](./how-add-bulk-button.md)
Expand Down

0 comments on commit f3c2c74

Please sign in to comment.