Commit 6c84dcbf authored by sai.sandeep's avatar sai.sandeep

Merge branch 'dev-sandeep'

parents ea65f143 eb74056d
......@@ -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