我正在尝试将 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 我使用了一些按键,改变了绑定功能。我将非常感谢帮助我解决这个问题。