我在面板中有多个网格。基础网格中包含数据,可以在彼此之间拖放。面板中的所有网格都应该能够在彼此之间拖放。这在chrome中完美运行,但不适用于Firefox,IE或Safari。
在IE,FF和Safari中,带有数据的网格将在彼此之间拖放而没有问题。他们不会在空网格之间。我尝试将数据添加到空网格,但这不是问题。 Firebug在与Extjs一起使用时也会出错,因此我得到的任何错误都来自不同的开发工具。我重新安装了所有这些浏览器,这也不是答案。我卡住了......
编辑我在chrome中发现我的dragdrop组的viewconfig已设置但未在其他浏览器中设置
这是我的基础网格,其中包含数据。
var rround = "panel-game-"+round;
var ss = Ext.create('Ext.grid.Panel', {
stateful: true,
id: "panel-game-"+round,
stateId: 'stateGrid',
autoScroll: false,
store: store,
columns: [
{
text : 'Teams',
flex : 1,
sortable : true,
dataIndex: 'team_name'
}
],
height: 100,
width: 150,
title: 'Game ' + round,
viewConfig: {
stripeRows: true,
plugins: {
ptype: 'gridviewdragdrop',
dragGroup: [groups],
dropGroup: [groups]
},
listeners: {
drop: function(node, data, dropRec, dropPosition,record,store) {
var dropOn = dropRec ? ' ' + dropPosition + ' ' + dropRec.get('name') : ' on empty view';
var data = this.store.data.items;
var sdata = new Array();
data.each(function(e){
var bleh = {team_id: e.data.team_id, team_name:e.data.team_name};
sdata.push(bleh);
})
removeDupe(sdata,this.store);
}
}
}
});
这是我应该接受掉落的空网格,当有数据时也应该拖动。
var rCell = Ext.create('Ext.grid.Panel', {
stateful: true,
id: "panel-game-"+i+'-'+a,
stateId: 'stateGrid',
autoScroll: false,
store: rCellStore,
columns: [
{
text : 'Teams',
flex : 1,
sortable : true,
dataIndex: 'team_name'
}
],
viewConfig: {
plugins: {
ptype: 'gridviewdragdrop',
dragGroup: [groups],
dropGroup: [groups]
},
listeners: {
beforedrop: function(node,data,overModel,dropPosition,eOpts){
console.log(node);
},
drop: function(node, data, dropRec, dropPosition, record) {
console.log("drop");
var dropOn = dropRec ? ' ' + dropPosition + ' ' + dropRec.get('title') : ' on empty view';
var f = node.id.replace('-body','');
var newval = data.records[0].data;
if(f != undefined && f != ''){
var fstore = Ext.getCmp(f).getStore();
fstore.add(newval);
}
var data = this.store.data.items;
var sdata = new Array();
data.each(function(e){
var bleh = {team_id: e.data.team_id, team_name:e.data.team_name};
sdata.push(bleh);
})
removeDupe(sdata,this.store);
}
}
},
height: 100,
width: 150,
title: 'Game ',
viewConfig: {
stripeRows: true
}
});
当我试图拖过一些东西时,它不会给掉一个dropzone。可能是那个,但我不确定如何解决它。
答案 0 :(得分:0)
问题是第二个viewConfig {stripeRows:true}。 Chrome可以解决这个问题,但其他浏览器用第二个浏览器覆盖了第一个viewConfig。