0
我試圖在設置屬性時拖放到TabPanel
選項卡(實際選項卡,而不是容器)。ExtJS拖放TabPanel
我有一個TabPanel
和我整個的TabPanel條設立一個拖放區,但不能肯定有關getTargetFromEvent
Exmple
// My TabPanel Def
myTabPanel = new Ext.TabPanel({
activeTab: 0,
items: [{
title:'Non-Drop Tab'
},{
title:'DROP ON THIS TAB',
enableDrop: True
}]
});
myTabPanel.dropZone = new Ext.dd.DropZone(myTabPanel.strip,{
getTargetFromEvent: function(e) {
// ####
// Need to get the tab being dropped onto here
// ####
return the_tab;
},
...rest of config...
})
我希望這是有道理的,謝謝!