// Prevent click event in tree toolbar buttons
This commit is contained in:
@@ -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')
|
||||
)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user