I need to add a TOOLTIP in a cell of ejgrid with data from the row.
example:
<ej-grid [allowPaging]="true" [allowSorting]="true" [dataSource]="gridData" [allowFiltering]="true" [(filterSettings)]="filterSet" (rowSelected)="onRowClicked($event)">
<e-columns>
<e-column field="title" headerText="Title" width="100"></e-column>
<e-column field="type" headerText="Type" width="100"></e-column>
<e-column field="status" headerText="Status" width="100" tooltip=">>>errorMsg<<<<" ></e-column>
</e-columns>
</ej-grid>
Where errorMsg is a FIELD from the row. I have done many attempt to access the data but seem to be impossible.
There is any way to do this?
If not possible how can we use instead a "onclick" event and show in a alert the "errorMsg" field retrieved from the row ?
Thanks.
marco