0
我有一個自定義的DataGrid,我想添加自定義菜單:添加自定義菜單項的DataGrid
public function MyCustomDataGrid() {
super();
init();
}
private function init():void {
var _copyElementMenuItem:ContextMenuItem = new ContextMenuItem("Copier Donnée");
_copyElementMenuItem.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, handleCopyData);
this.contextMenu = new ContextMenu();
contextMenu.hideBuiltInItems();
contextMenu.customItems = [ _copyElementMenuItem ];
}
的問題是,我的自定義菜單項就不會顯示了,我永諾結束了標準閃存上下文菜單:
我缺少什麼?我該如何解決這個問題?謝謝。