// List columns can be fixed width or extensible

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9841 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
tDidierjean
2011-11-03 14:35:15 +00:00
parent fdbf78d786
commit 10212011e9
3 changed files with 18 additions and 10 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ class AdminTaxesControllerCore extends AdminController
$this->fieldsDisplay = array(
'id_tax' => array('title' => $this->l('ID'), 'align' => 'center', 'width' => 25),
'name' => array('title' => $this->l('Name'), 'width' => 140),
'name' => array('title' => $this->l('Name'), 'width' => 'auto'),
'rate' => array('title' => $this->l('Rate'), 'align' => 'center', 'suffix' => '%', 'width' => 50),
'active' => array('title' => $this->l('Enabled'), 'width' => 25, 'align' => 'center', 'active' => 'status', 'type' => 'bool', 'orderby' => false));