How can i add a data-testid to a GridCommandColumn?
I am trying to add a static id to a GridCommandColumn, but am not having any luck. For GridColumns I am able to add a HeaderTemplate and add a data-testid that way
<GridColumn HeaderClass="left-wrap" Field="UId" Visible="false" ShowFilterCellButtons="false" Title="TestColumn">
<HeaderTemplate>
<div id="col-testcolumnid-home" data-testid="col-testcolumnid-home" class="k-cell-inner">
<span class="k-link">TestColumn</span>
</div>
</HeaderTemplate>
</GridColumn>
Is there a way to add a data-testid to a GridCommandColumn component?