Skip to content

Replies

0
AMIT JHA
AMIT JHA answered on Feb 8, 2019 10:40 AM

Thanks, It Worked.

0
AMIT JHA
AMIT JHA answered on Feb 5, 2019 6:57 AM

How Can I add static tooltip for header only in igx grid. I tried adding title ="some toolyip" but it does not workk:

<div class="gridContainer">
<igx-grid #defectdetails [data]="defectsData" [autoGenerate]="false" [rowSelectable]="true" [width]="width" height="256px"
columnWidth="120px" (onRowSelectionChange)="OnDefectSelection($event)" (onDataPreLoad)="loadDefectData()"
(onSortingDone)="OnSortData()" (onFilteringDone)="OnFilterData()" [primaryKey]="'rowid'" [emptyGridMessage]="'No Defects to Display.'" [allowFiltering]="true">

<igx-column header="Pos X" [field]="'PosX'" dataType="number" [filterable]="true" [sortable]="true" [resizable]="true" title="'some Title'"></igx-column>

</igx-grid>
</div>
</div>