Skip to content

Commit 2f4e029

Browse files
authored
Merge pull request #926 from samuelvi/fix-var--add-actions-column-sample
missing $ in rowAction2 variable (var appeared 2 times in the sample code)
2 parents 450abd8 + 537cf49 commit 2f4e029

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Resources/doc/grid_configuration/add_actions_column.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $grid->addRowAction($rowAction1);
2525
// OR add a second row action directly to a new action column
2626
$rowAction2 = new RowAction('Edit', 'route_to_edit');
2727

28-
$actionsColumn2 = new ActionsColumn($column, $title, array(rowAction2), $separator);
28+
$actionsColumn2 = new ActionsColumn($column, $title, array($rowAction2), $separator);
2929
$grid->addColumn($actionsColumn2, $position2);
3030
...
3131
```

0 commit comments

Comments
 (0)