If you have a hbox layout with 3 grids side by side
new Ext.Panel(
{
layout: "hbox",
anchor: '100% 100%',
layoutConfig:
{
align: 'stretch',
pack: 'start'
},
items: [GridPanel1, GridPanel2, GridPanel3
})
then you should use El mesh instead of container
var ddrow = new Ext.dd.DropTarget(grid.getEl(), { ....
source
share