本文整理汇总了TypeScript中ag-grid-community.Context.wireBean方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Context.wireBean方法的具体用法?TypeScript Context.wireBean怎么用?TypeScript Context.wireBean使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ag-grid-community.Context
的用法示例。
在下文中一共展示了Context.wireBean方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: create
public create(): Component {
let pivotComp = new PivotDropZonePanel(true);
this.context.wireBean(pivotComp);
return pivotComp;
}
示例2: create
public create(): Component {
let rowGroupComp = new RowGroupDropZonePanel(true);
this.context.wireBean(rowGroupComp);
return rowGroupComp;
}
示例3: addMenuItems
@PostConstruct
private addMenuItems(): void {
let menuList = new MenuList();
this.context.wireBean(menuList);
let menuItemsMapped = this.menuItemMapper.mapWithStockItems(this.menuItems, null);
menuList.addMenuItems(menuItemsMapped);
this.appendChild(menuList);
menuList.addEventListener(MenuItemComponent.EVENT_ITEM_SELECTED, this.destroy.bind(this));
}
示例4: showMenu
public showMenu(node: RowNode, column: Column, value: any, mouseEvent: MouseEvent | Touch): void {
let menuItems = this.getMenuItems(node, column, value);
if (Utils.missingOrEmpty(menuItems)) { return; }
let menu = new ContextMenu(menuItems);
this.context.wireBean(menu);
let eMenuGui = menu.getGui();
// need to show filter before positioning, as only after filter
// is visible can we find out what the width of it is
let hidePopup = this.popupService.addAsModalPopup(
eMenuGui,
true,
()=> menu.destroy(),
mouseEvent
);
this.popupService.positionPopupUnderMouseEvent({
column: column,
rowNode: node,
type: 'contextMenu',
mouseEvent: mouseEvent,
ePopup: eMenuGui
});
menu.afterGuiAttached({
hidePopup: hidePopup
});
this.activeMenu = menu;
menu.addEventListener(BeanStub.EVENT_DESTROYED, ()=> {
if (this.activeMenu===menu) {
this.activeMenu = null;
}
});
}