// Prevent click event in tree toolbar buttons

This commit is contained in:
Jerome Nadaud
2013-12-02 19:07:28 +01:00
parent 2316bb50ba
commit 8bf49049eb
2 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -115,22 +115,22 @@ class HelperTreeShopsCore extends TreeCore
new TreeToolbarLink(
'Collapse All',
'#',
'$(\'#'.$this->getId().'\').tree(\'collapseAll\')',
'$(\'#'.$this->getId().'\').tree(\'collapseAll\'); return false;',
'icon-collapse-alt'),
new TreeToolbarLink(
'Expand All',
'#',
'$(\'#'.$this->getId().'\').tree(\'expandAll\')',
'$(\'#'.$this->getId().'\').tree(\'expandAll\'); return false;',
'icon-expand-alt'),
new TreeToolbarLink(
'Check All',
'#',
'checkAllAssociatedShops($(\'#'.$this->getId().'\'));',
'checkAllAssociatedShops($(\'#'.$this->getId().'\')); return false;',
'icon-check-sign'),
new TreeToolbarLink(
'Uncheck All',
'#',
'uncheckAllAssociatedShops($(\'#'.$this->getId().'\'));',
'uncheckAllAssociatedShops($(\'#'.$this->getId().'\')); return false;',
'icon-check-empty')
)
);