Exclude rows in c8y-data-grid from selection

I’m using the c8y-data-grid component to display some rows samples.

    <c8y-data-grid
      [title]="titleSample | translate"
      [refresh]="refresh"
      [columns]="columnsSamples"
      [rows]="samples"
      [pagination]="pagination"
      [selectable]="'true'"
      [actionControls]="actionControls"
      [bulkActionControls]="bulkActionControls"
    >
    </c8y-data-grid>

Is it possible to disable the selection of certain rows based on a condition?

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.