我正在尝试将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我使用了一些按键,更改绑定功能。我将非常感谢帮助解决这个问题。
答案 0 :(得分:4)
我不确定将jQuery包含在管理面板中是有意义的,只是为了使用这个组件。 Magento已经有Prototype + Scriptaculous,你甚至不需要启用它们。您可以使用的组件是Sortable,它可以完成您需要的所有内容: 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开发的乐趣!