@angular/core#ViewChild TypeScript Examples

The following examples show how to use @angular/core#ViewChild. 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: leaderboard.component.ts    From one-platform with MIT License 5 votes vote down vote up
@ViewChild('pickSelect') pickSelect: ElementRef;
Example #2
Source File: base.component.ts    From 1hop with MIT License 5 votes vote down vote up
@ViewChild('walletAddressDropDown')
    walletAddressDropDown: NgbDropdown;
Example #3
Source File: base.component.ts    From 1x.ag with MIT License 5 votes vote down vote up
@ViewChild('walletAddressDropDown')
    walletAddressDropDown: NgbDropdown;
Example #4
Source File: search-display.page.ts    From Uber-ServeMe-System with MIT License 5 votes vote down vote up
@ViewChild('myInput', {static: true}) myInput: IonInput;
Example #5
Source File: ngx-photo-editor.component.ts    From ngx-photo-editor with MIT License 5 votes vote down vote up
@ViewChild('ngxPhotoEditorContent', {static: false}) content;
Example #6
Source File: home.component.ts    From transformers-for-lawyers with Apache License 2.0 5 votes vote down vote up
// @ViewChild("component1") viewer: DocumentViewerComponent;
    @ViewChild("searcher") searcher: SearchComponent;
Example #7
Source File: paginator.directive.spec.ts    From angular-custom-material-paginator with MIT License 5 votes vote down vote up
@ViewChild(MatPaginator) paginator: MatPaginator;
Example #8
Source File: tutorial-dialog.component.ts    From bdc-walkthrough with MIT License 5 votes vote down vote up
@ViewChild(TemplateRef, {static: true}) templateRef: TemplateRef<any>;
Example #9
Source File: mission-single.component.ts    From Smersh with MIT License 5 votes vote down vote up
@ViewChild('fileInput')
  fileInput: ElementRef;
Example #10
Source File: qr-scan-modal.component.ts    From xBull-Wallet with GNU Affero General Public License v3.0 5 votes vote down vote up
@ViewChild('qrVideo') qrVideo!: ElementRef<HTMLVideoElement>;
Example #11
Source File: settings.component.ts    From rubic-app with GNU General Public License v3.0 5 votes vote down vote up
@ViewChild(TuiHostedDropdownComponent)
  component?: TuiHostedDropdownComponent;
Example #12
Source File: analysis-gantt.component.ts    From ng-devui-admin with MIT License 5 votes vote down vote up
@ViewChild('ganttContainer', { static: true }) ganttContainer: ElementRef;
Example #13
Source File: scrollbar.component.ts    From angular-electron-admin with Apache License 2.0 5 votes vote down vote up
// Top
  @ViewChild('goToTopScroll')
  goToTopScroll: PerfectScrollbarDirective;
Example #14
Source File: space-usage-chart.component.ts    From RcloneNg with MIT License 5 votes vote down vote up
@ViewChild(BaseChartDirective) chart: BaseChartDirective;
Example #15
Source File: pages-list.component.ts    From FireAdmin with MIT License 5 votes vote down vote up
@ViewChild(DataTableDirective, {static : false}) private dataTableElement: DataTableDirective;
Example #16
Source File: browse.component.ts    From Bridge with GNU General Public License v3.0 5 votes vote down vote up
@ViewChild('resultTable', { static: true }) resultTable: ResultTableComponent
Example #17
Source File: app.component.ts    From ng-conf-2020-workshop with MIT License 5 votes vote down vote up
@ViewChild(IgxNavigationDrawerComponent, { static: true }) public navdrawer: IgxNavigationDrawerComponent;
Example #18
Source File: ngx-splide-slide.component.ts    From ngx-splide with MIT License 5 votes vote down vote up
@ViewChild('slideContent')
    public slideContent: TemplateRef<any>;
Example #19
Source File: app.component.ts    From ngx-colors with MIT License 5 votes vote down vote up
@ViewChild("tabmenu") menuView: ElementRef;
Example #20
Source File: add-blog.component.ts    From Collab-Blog with GNU General Public License v3.0 5 votes vote down vote up
@ViewChild('tag', {static:true}) tagInput: ElementRef;
Example #21
Source File: accordion-item.component.ts    From canopy with Apache License 2.0 5 votes vote down vote up
@ViewChild(LgAccordionItemContentDirective, { static: true })
  defaultContent: LgAccordionItemContentDirective;