Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
530
IGX-GRID - Custom tooltip in a cell
posted

Hello,

In my grid, I manage amounts with 2 decimals. I don't want to display the decimals only in edit mode. However, I would like to display the amounts with decimals in a tooltip.

How can I do this?

My column like this,

 <igx-column header="Total"  [pinned]="false" [filterable]=false [field]="'MTT_R'" [editable]=false [cellStyles]="gris" width=120   [dataType]="'currency'"  [hasSummary]="true"  [summaries]="totalSummary" [pipeArgs]="formatOptions"></igx-column>

with formatOptions :

  public options = {
    digitsInfo: '1.0-0',
    currencyCode: 'EUR',
    display: 'symbol-narrow'
  };
  public formatOptions = this.options;

Thanks,

Philippe DUFEIL