Action icons in RadzenDataGrid

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>

Hi @Kris-I,

Have a look at this demo - Blazor DataGrid inline editing.

Saw that but it's not that I need I need buttons or icon .. to make some action like navigate to other page.

The linked demo contains buttons with icons. Not sure how this differs from your requirements. The button has a Click event where you can do whatever is needed.

Crap I didn't pay attention, I didn't scroll right :frowning:

1000 sorry

Thanks,

That's actually a usability issue which we will have to address. The buttons should appear without the need for scrolling. We will reduce the number of columns.