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
35
Custom grid cell editor navigation
posted

Hello!

In our grid we are using a custom number input as follow:

<ng-container *ngIf="childCol.dataType === 'number'">
  <ng-template igxCellEditor let-cell="cell">
    <div class="igx-input-group igx-input-group--fluent full-width">
      <ct-inputNumber
        #inputNumber
        [(ngModel)]="cell.editValue"
        mode="decimal"
        [minFractionDigits]="childCol.digitsInfo"
        [maxFractionDigits]="childCol.digitsInfo"
      ></ct-inputNumber>
    </div>
  </ng-template>
</ng-container>

Now the problem is that cellEditDone doesn't get triggerd when using keyboard navigation. When using the mouse to navigate the correct events are triggered. I guess I need to add some properties to our component, but what do I need to add to make the keyboard navigation work?

Parents Reply Children
No Data