]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/share/grid/grid-body-cell.component.ts
LP#1819179: Angular value formatter gets link smarts
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / share / grid / grid-body-cell.component.ts
1 import {Component, Input, OnInit, AfterViewInit,
2     TemplateRef, ElementRef} from '@angular/core';
3 import {GridContext, GridColumn, GridRowSelector,
4     GridColumnSet, GridDataSource} from './grid';
5
6 @Component({
7   selector: 'eg-grid-body-cell',
8   templateUrl: './grid-body-cell.component.html'
9 })
10
11 export class GridBodyCellComponent implements OnInit {
12
13     @Input() context: GridContext;
14     @Input() row: any;
15     @Input() column: GridColumn;
16
17     initDone: boolean;
18
19     constructor(
20         private elm: ElementRef
21     ) {}
22
23     ngOnInit() {}
24 }
25