We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebef016 commit 9c19707Copy full SHA for 9c19707
html-builder-callbacks.md
@@ -19,3 +19,12 @@ You can use a `js` string for each valid callback as documented on [`datatables.
19
|`stateLoadParams` | State loaded - data manipulation callback |
20
|`stateSaveCallback` | Callback that defines how the table state is stored and where. |
21
|`stateSaveParams` | State save - data manipulation callback |
22
+
23
+## Example
24
+In this example, we will hook on the the `drawCallback` of dataTable.
25
26
+```php
27
+$builder->parameters([
28
+ 'drawCallback' => 'function() { alert("Table Draw Callback") }',
29
+]);
30
+```
0 commit comments