// Fix Combinations list actions button problem

This commit is contained in:
Jerome Nadaud
2013-11-06 12:18:52 +01:00
parent a890410a64
commit 0c1b77b3da
3 changed files with 9 additions and 6 deletions
+5 -3
View File
@@ -64,6 +64,8 @@ class HelperListCore extends Helper
public $position_identifier;
public $table_id;
/**
* @var string Customize list display
*
@@ -536,8 +538,8 @@ class HelperListCore extends Helper
isset($this->context->cookie->{$this->list_id.'_pagination'}) ? $this->context->cookie->{$this->list_id.'_pagination'} : null
);
if ($this->position_identifier && (int)Tools::getValue($this->position_identifier, 1))
$table_id = substr($this->identifier, 3, strlen($this->identifier));
if (!isset($this->table_id) && $this->position_identifier && (int)Tools::getValue($this->position_identifier, 1))
$this->table_id = substr($this->identifier, 3, strlen($this->identifier));
if ($this->position_identifier && ($this->orderBy == 'position' && $this->orderWay != 'DESC'))
$table_dnd = true;
@@ -628,7 +630,7 @@ class HelperListCore extends Helper
'id_cat' => $id_cat,
'shop_link_type' => $this->shopLinkType,
'has_actions' => !empty($this->actions),
'table_id' => isset($table_id) ? $table_id : null,
'table_id' => isset($this->table_id) ? $this->table_id : null,
'table_dnd' => isset($table_dnd) ? $table_dnd : null,
'name' => isset($name) ? $name : null,
'name_id' => isset($name_id) ? $name_id : null,
@@ -3883,6 +3883,7 @@ class AdminProductsControllerCore extends AdminController
$helper = new HelperList();
$helper->identifier = 'id_product_attribute';
$helper->table_id = 'combinations-list';
$helper->token = $this->token;
$helper->currentIndex = self::$currentIndex;
$helper->no_link = true;
+3 -3
View File
@@ -35,7 +35,7 @@ product_tabs['Customization'] = new function(){
product_tabs['Combinations'] = new function(){
var self = this;
this.bindEdit = function(){
$('table[name=list_table]').delegate('a.edit', 'click', function(e){
$('table[id=combinations-list]').delegate('a.edit', 'click', function(e){
e.preventDefault();
editProductAttribute(this.href, $(this).closest('tr'));
});
@@ -143,7 +143,7 @@ product_tabs['Combinations'] = new function(){
};
this.bindDefault = function(){
$('table[name=list_table]').delegate('a.default', 'click', function(e){
$('table[id=combinations-list]').delegate('a.default', 'click', function(e){
e.preventDefault();
console.log('ok');
self.defaultProductAttribute(this.href, this);
@@ -175,7 +175,7 @@ product_tabs['Combinations'] = new function(){
};
this.bindDelete = function() {
$('table[name=list_table]').delegate('a.delete', 'click', function(e){
$('table[id=combinations-list]').delegate('a.delete', 'click', function(e){
e.preventDefault();
self.deleteProductAttribute(this.href, $(this).closest('tr'));
});