我試圖連接jQuery插件http://www.isocra.com/2008/02/table-drag-and-drop-jquery-plugin/與Catalog_Products表,我做到了。我到grid.js文件中注入代碼(jQuery代碼):Magento Catalog_Products在jQuery中的拖放表admin
...
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我使用了一些按鍵,改變綁定功能。我將非常感謝幫助解決這個問題。
Thx非常多這是工作,但sitll我沒有得到這個值到數據庫中。你能幫助我嗎? – 2012-08-16 11:33:06
在上一個聲明中,我提到了有關禁用的元素。你嘗試過調試嗎? – 2012-08-16 15:07:29
是的,我讓它工作:) thx – 2012-08-21 12:46:10