From 4499f9b96fd69d54104db4fb1de56b8f8b8f9058 Mon Sep 17 00:00:00 2001 From: Mohammad ZeinEddin Date: Wed, 16 Oct 2013 17:18:24 +0200 Subject: [PATCH] change the name of the attribute to reflect its content --- .../Renderer/BootstrapTable/View/Helper/TableRow.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ZfcDatagrid/Renderer/BootstrapTable/View/Helper/TableRow.php b/src/ZfcDatagrid/Renderer/BootstrapTable/View/Helper/TableRow.php index ffe9ddb2..5448ceab 100644 --- a/src/ZfcDatagrid/Renderer/BootstrapTable/View/Helper/TableRow.php +++ b/src/ZfcDatagrid/Renderer/BootstrapTable/View/Helper/TableRow.php @@ -120,7 +120,7 @@ public function __invoke ($row, $columns, AbstractAction $rowClickAction = null) $attributes = array( 'class' => implode(',', $classes), 'style' => implode(';', $styles), - 'data-uniqueId' => $column->getUniqueId() + 'data-columnUniqueId' => $column->getUniqueId() ); $return .= $this->getTd($value, $attributes);