Remove data-title from table data

This was utilized by an older responsive table implementation, no longer in use
This commit is contained in:
Samuel Georges 2017-01-26 11:00:23 +11:00
parent 6c5a83de89
commit 513a75c87e

View File

@ -18,7 +18,7 @@
<?php $index = $url = 0; foreach ($columns as $key => $column): ?> <?php $index = $url = 0; foreach ($columns as $key => $column): ?>
<?php $index++; ?> <?php $index++; ?>
<td data-title="<?= e(trans($column->label)) ?>" class="list-cell-index-<?= $index ?> list-cell-name-<?= $column->getName() ?> list-cell-type-<?= $column->type ?> <?= $column->clickable ? '' : 'nolink' ?> <?= $column->cssClass ?>"> <td class="list-cell-index-<?= $index ?> list-cell-name-<?= $column->getName() ?> list-cell-type-<?= $column->type ?> <?= $column->clickable ? '' : 'nolink' ?> <?= $column->cssClass ?>">
<?php if ($column->clickable && !$url && ($url = $this->getRecordUrl($record))): ?> <?php if ($column->clickable && !$url && ($url = $this->getRecordUrl($record))): ?>
<a <?= $this->getRecordOnClick($record) ?> href="<?= $url ?>"> <a <?= $this->getRecordOnClick($record) ?> href="<?= $url ?>">
<?= $this->getColumnValue($record, $column) ?> <?= $this->getColumnValue($record, $column) ?>