Hello,
In a specific column I'd like few icons (edit, delete,...). I don't find any samples for this in the doc (or I missed)
Thanks,
<RadzenDataGrid AllowFiltering="true"
AllowColumnResize="true"
AllowAlternatingRows="true"
AllowSorting="true"
PageSize="20"
AllowPaging="true"
ShowPagingSummary="true"
Data="@Customers"
ColumnWidth="300px"
TItem="CustomerViewModel"
GridLines="Radzen.DataGridGridLines.Horizontal">
<Columns>
<RadzenDataGridColumn TItem=CustomerViewModel Property="Id" TextAlign="TextAlign.Left" />
<RadzenDataGridColumn TItem=CustomerViewModel Property="Reference" TextAlign="TextAlign.Left" />
<RadzenDataGridColumn TItem=CustomerViewModel Property="LastName" TextAlign="TextAlign.Left" />
<RadzenDataGridColumn TItem=CustomerViewModel Property="FirstName" TextAlign="TextAlign.Left" />
</Columns>
</RadzenDataGrid>