Commit eb74056d authored by sai.sandeep's avatar sai.sandeep

Update simple-table-with-pagination.component.html

parent 4c183cbe
......@@ -298,12 +298,12 @@
<ng-template #clickableCellWithIcon>
<span>
<i [ngClass]="eachItem['class']"></i>&nbsp;
<span class="clickable-element" [ngClass]="tableDataWithActions?.clickableColumns?.class" (click)="emitAction({'type': 'cellClick'}, eachItem,rowIndex , eachHeader['key'],'cellKey')">
<span class="clickable-element" [ngClass]="tableDataWithActions?.clickableColumns?.class" (click)="emitAction({'type': 'cellClick'}, eachItem,rowIndex , eachHeader['key'],'cellKey')" [title]="eachItem[eachHeader['key']]">
{{eachItem[eachHeader['key']]}}</span>
</span>
</ng-template>
<ng-template #plainClickableCell>
<span class="clickable-element" [ngClass]="tableDataWithActions?.clickableColumns?.class" (click)="emitAction({'type': 'cellClick'}, eachItem,rowIndex , eachHeader['key'],'cellKey')">
<span class="clickable-element" [ngClass]="tableDataWithActions?.clickableColumns?.class" (click)="emitAction({'type': 'cellClick'}, eachItem,rowIndex , eachHeader['key'],'cellKey')" [title]="eachItem[eachHeader['key']]">
{{eachItem[eachHeader['key']]}}</span>
</ng-template>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment