gpt4 book ai didi

jquery - Magento Catalog_Products 在管理中使用 jQuery 拖放表格

转载 作者:行者123 更新时间:2023-12-01 07:22:51 26 4
gpt4 key购买 nike

我正在尝试连接 jQuery 插件 http://www.isocra.com/2008/02/table-drag-and-drop-jquery-plugin/与 Catalog_Products 表,我做到了。我将此代码(jQuery 代码)注入(inject)到 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 我使用了一些按键,更改了绑定(bind)功能。我将非常感谢您帮助我解决这个问题。

最佳答案

我不确定将 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 开发的乐趣!

关于jquery - Magento Catalog_Products 在管理中使用 jQuery 拖放表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11967656/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com