// List columns can be fixed width or extensible

This commit is contained in:
tDidierjean
2011-11-03 14:35:15 +00:00
parent 2ec2a3d25f
commit d9c30b9064
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));