LP1821382 Angular staff catalog Holdings Maintenance
[evergreen-equinox.git] / Open-ILS / src / eg2 / src / app / share / grid / grid-column.component.ts
index 4cebd48..76a89f6 100644 (file)
@@ -31,6 +31,8 @@ export class GridColumnComponent implements OnInit {
     @Input() cellContext: any;
     @Input() cellTemplate: TemplateRef<any>;
 
+    @Input() disableTooltip: boolean;
+
     // get a reference to our container grid.
     constructor(@Host() private grid: GridComponent) {}
 
@@ -50,6 +52,7 @@ export class GridColumnComponent implements OnInit {
         col.isIndex = this.index === true;
         col.cellTemplate = this.cellTemplate;
         col.cellContext = this.cellContext;
+        col.disableTooltip = this.disableTooltip;
         col.isSortable = this.sortable;
         col.isMultiSortable = this.multiSortable;
         col.datatype = this.datatype;