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 ec7f38d commit 5665843Copy full SHA for 5665843
src/renderers/ListRenderer.php
@@ -136,10 +136,12 @@ protected function renderBody()
136
private function renderRowContent($index = null, $item = null)
137
{
138
$elements = [];
139
+
140
+ $columnIndex = 0;
141
foreach ($this->columns as $column) {
142
/* @var $column BaseColumn */
143
$column->setModel($item);
- $elements[] = $this->renderCellContent($column, $index);
144
+ $elements[] = $this->renderCellContent($column, $index, $columnIndex++);
145
}
146
147
$content = [];
0 commit comments