1

我正在尝试将 jQuery 插件http://www.isocra.com/2008/02/table-drag-and-drop-jquery-plugin/与 Catalog_Products 表连接起来,我做到了。我将此代码(jQuery 代码)注入到 grid.js 文件中:

...

initGrid : function(){
    if(this.preInitCallback){
        this.preInitCallback(this);
    }
    if($(this.containerId+this.tableSufix)){
        this.rows = $$('#'+this.containerId+this.tableSufix+' tbody tr');
        for (var row=0; row<this.rows.length; row++) {
            if(row%2==0){
                Element.addClassName(this.rows[row], 'even');
            }

            Event.observe(this.rows[row],'mouseover',this.trOnMouseOver);
            Event.observe(this.rows[row],'mouseout',this.trOnMouseOut);
            Event.observe(this.rows[row],'click',this.trOnClick);
            Event.observe(this.rows[row],'dblclick',this.trOnDblClick);

            if(this.initRowCallback){
                try {
                    this.initRowCallback(this, this.rows[row]);
                } catch (e) {
                    if(console) {
                        console.log(e);
                    }
                }
            }
        }
    }
    if(this.sortVar && this.dirVar){
        var columns = $$('#'+this.containerId+this.tableSufix+' thead a');

        for(var col=0; col<columns.length; col++){
            Event.observe(columns[col],'click',this.thLinkOnClick);
        }
    }
    this.bindFilterFields();
    this.bindFieldsChange();
    if(this.initCallback){
        try {
            this.initCallback(this);
        }
        catch (e) {
            if(console) {
                console.log(e);
            }
        }
    }
    // Drag and drop
    jQuery(document).ready(function() {
        // Initialise the table
        jQuery("#catalog_category_products_table tbody").tableDnD({
            onDrop: function() {
                jQuery("#catalog_category_products_table tbody tr").each(function(index) {
                    jQuery("#catalog_category_products_table tbody tr td input.input-text:eq("+index+")").removeAttr('value');
                    jQuery("#catalog_category_products_table tbody tr td input.input-text:eq("+index+")").attr('value', index + 1);
                });
            }
        });
    });
},
getContainerId : function(){
    return this.containerId;
},

...

删除后,我执行排序功能以对输入值进行排序,例如 1,2... 这工作正常。问题是当我保存这个产品时,新的输入值没有保存我认为这是因为 magento 我使用了一些按键,改变了绑定功能。我将非常感谢帮助我解决这个问题。

4

1 回答 1

4

我不确定将 jQuery 包含到管理面板中是否有意义,只是为了使用这个组件。Magento 已经有 Prototype + Scriptaculous 可用,你甚至不需要启用它们。您可以使用的组件是可排序的,它可以满足您的所有需求: http: //madrobby.github.com/scriptaculous/sortable-create/

修改grid.js文件也不是一个好主意,您可以轻松地将任何类方法包装在prototypejs框架中。为此,通过布局更新,您可以包含具有此类内容的自定义 JS 文件:

varienGrid = Class.create(varienGrid, {
   initGrid: function ($super) {
       $super(); // Calling parent method functionality
       // Doing your customization
   }
});

在这种情况下,此页面上实例化的所有网格对象都将调用您的自定义方法代码,并且您可以安全地升级您的代码。

对于您的特定情况,代码可能如下所示:

varienGrid = Class.create(varienGrid, {
   initGrid: function ($super) {
       $super(); // Calling parent method functionality
       var table = $(this.containerId+this.tableSufix);
       this.sortedContainer = table.down('tbody');
       Sortable.create(this.sortedContainer.identify(), {
            tag: 'TR', 
            dropOnEmpty:true, 
            containment: [this.sortedContainer.identify()], 
            constraint: false,
            onChange: this.updateSort.bind(this)
       });
   },
   updateSort: function () 
   {
       var rows = this.sortedContainer.childElements(); // Getting all rows
       for (var i = 0, l = rows.length; i < l; i++) {
           // Check if input is available
           if (rows[i].down('input[type="text"]')) {
               rows[i].down('input[type="text"]').value = i + 1;
               // Updating is changed flag for element
               rows[i].down('input[type="text"]').setHasChanges({});
           }
       }
   }
});

同样对于元素,其中一些元素可能被禁用且未处理。您可以在 updateSort 方法中调试每个元素。

享受 Magento 开发的乐趣!

于 2012-08-15T17:22:40.563 回答