The command column in the Blazor DataGrid has 3 or more command buttons and the last button is not viewable. How to view all the command buttons?

Answer:

We suggest you to provide needed Width for that command column to view all the buttons in it. Here is the code snippet for your reference,


<GridColumn HeaderText="Manage Records" Width="150"> @*Provide needed Width to show all the command column buttons*@

<GridCommandColumns>

<GridCommandColumn ButtonOption="@(new CommandButtonOptions() { CssClass = "e-icons e-delete" })">

GridCommandColumn>

...

GridCommandColumns>

GridColumn>


Loader.
Up arrow icon