@angular/core#ViewChildren TypeScript Examples
The following examples show how to use
@angular/core#ViewChildren.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: layout.component.ts From open-source with MIT License | 5 votes |
@ViewChildren(MatExpansionPanel, { read: ElementRef }) elements: QueryList<ElementRef>;
Example #2
Source File: json-schema-form.component.ts From json-schema-form with Apache License 2.0 | 5 votes |
/**
* container children for event propagation
*/
@ViewChildren('children') children: QueryList<JsonSchemaFormComponent>;
Example #3
Source File: dxc-select.component.ts From halstack-angular with Apache License 2.0 | 5 votes |
@ViewChildren("optionGroupRef") optionGroupRef: QueryList<ElementRef>;
Example #4
Source File: dxc-tag.component.ts From halstack-angular with Apache License 2.0 | 5 votes |
@ViewChildren("dxcBox", { read: ElementRef }) dxcBox: QueryList<ElementRef>;
Example #5
Source File: dxc-tag.component.ts From halstack-angular with Apache License 2.0 | 5 votes |
@ViewChildren("iconContainer", { read: ElementRef })
iconContainer: QueryList<ElementRef>;
Example #6
Source File: dashboard.component.ts From EDA with GNU Affero General Public License v3.0 | 5 votes |
@ViewChildren(EdaBlankPanelComponent) edaPanels: QueryList<EdaBlankPanelComponent>;
Example #7
Source File: dashboard.component.ts From EDA with GNU Affero General Public License v3.0 | 5 votes |
@ViewChildren(EdaDatePickerComponent) datePickers: QueryList<EdaDatePickerComponent>;
Example #8
Source File: path.component.ts From devops-path with Mozilla Public License 2.0 | 5 votes |
@ViewChildren('itemElement') itemElements: QueryList<ElementRef>;
Example #9
Source File: audit-table.component.ts From dayz-server-manager with MIT License | 5 votes |
@ViewChildren(SBSortableHeaderDirective) public headers!: QueryList<SBSortableHeaderDirective>;
Example #10
Source File: player-table.component.ts From dayz-server-manager with MIT License | 5 votes |
@ViewChildren(SBSortableHeaderDirective) public headers!: QueryList<SBSortableHeaderDirective>;
Example #11
Source File: player-table.component.ts From dayz-server-manager with MIT License | 5 votes |
@ViewChildren(SBSortableHeaderDirective) public headers!: QueryList<SBSortableHeaderDirective>;
Example #12
Source File: builder.component.ts From open-source with MIT License | 5 votes |
@ViewChildren(DynFormComponent)
dynForms: QueryList<DynFormComponent>;
Example #13
Source File: collection-view.component.ts From attack-workbench-frontend with Apache License 2.0 | 5 votes |
@ViewChildren(StixListComponent) stixLists: QueryList<StixListComponent>;
Example #14
Source File: layout.component.ts From open-source with MIT License | 5 votes |
@ViewChildren(MatExpansionPanel) panels: QueryList<MatExpansionPanel>;
Example #15
Source File: message-list.component.ts From onchat-web with Apache License 2.0 | 5 votes |
@ViewChildren(VoiceMessageComponent) voiceMsgList: QueryList<VoiceMessageComponent>;
Example #16
Source File: workflow-list.component.ts From workflow-editor with Educational Community License v2.0 | 5 votes |
@ViewChildren(MatTab, {read: MatTab})
public tabNodes: QueryList<MatTab>;
Example #17
Source File: app-menu.component.ts From youpez-admin with MIT License | 5 votes |
@ViewChildren('menuLevel') menuLevel: QueryList<AppMenuItemComponent>
Example #18
Source File: app-menu-item.component.ts From youpez-admin with MIT License | 5 votes |
@ViewChildren('menuLevel') menuLevel: QueryList<AppMenuItemComponent>
Example #19
Source File: preview-pages-panel.component.ts From sba-angular with MIT License | 5 votes |
@ViewChildren('currentPageEl', {read: ElementRef}) currentPageEl: QueryList<ElementRef>;
Example #20
Source File: app.component.ts From casual-chess with GNU General Public License v3.0 | 5 votes |
@ViewChildren(IonRouterOutlet) routerOutlets: QueryList<IonRouterOutlet>;
Example #21
Source File: bar.component.ts From ngx-gantt with MIT License | 5 votes |
@ViewChildren('handle') handles: QueryList<ElementRef<HTMLElement>>;
Example #22
Source File: children.component.ts From slate-angular with MIT License | 5 votes |
@ViewChildren(SlateDescendantComponent, { read: SlateDescendantComponent })
childrenComponent: QueryList<SlateDescendantComponent>;
Example #23
Source File: leaves.component.ts From slate-angular with MIT License | 5 votes |
@ViewChildren(SlateLeafComponent, { read: SlateLeafComponent })
childrenComponent: QueryList<SlateLeafComponent>;
Example #24
Source File: select.component.ts From ng-event-plugins with Apache License 2.0 | 5 votes |
@ViewChildren('option')
private readonly options!: QueryList<ElementRef>;
Example #25
Source File: rubic-menu.component.ts From rubic-app with GNU General Public License v3.0 | 5 votes |
@ViewChildren('dropdownOptionTemplate') dropdownOptionsTemplates: QueryList<TemplateRef<never>>;
Example #26
Source File: user-profile.component.ts From rubic-app with GNU General Public License v3.0 | 5 votes |
@ViewChildren('dropdownOptionTemplate') dropdownOptionsTemplates: QueryList<TemplateRef<unknown>>;
Example #27
Source File: user-profile.component.ts From rubic-app with GNU General Public License v3.0 | 5 votes |
@ViewChildren('dropdownOptionTemplate') public dropdownItems: QueryList<TemplateRef<unknown>>;
Example #28
Source File: ccr-promocode.component.ts From rubic-app with GNU General Public License v3.0 | 5 votes |
@ViewChildren('loading,accepted,wrong') iconsTemplates: QueryList<TemplateRef<unknown>>;
Example #29
Source File: query.component.ts From dbm with Apache License 2.0 | 5 votes |
@ViewChildren('codeEditors')
private codeEditors: QueryList<ElementRef>;