<SfGrid
@ref="Grid" ID="Grid" DataSource="@OrderData" AllowPaging="true" ContextMenuItems="@ContextMenuItems">
..
..
SfGrid>
@code{
private List<object>
ContextMenuItems = new List<object>()
{ "Autofit", "AutoFitAll", "SortAscending", "SortDescending", "Copy", "Edit", "Delete", "Save", "Cancel",
"PdfExport", "ExcelExport", "CsvExport", "FirstPage", "PrevPage", "LastPage", "NextPage",
new ContextMenuItemModel
{
Text = "Show", Id = "Show"
},
new ContextMenuItemModel
{
Text = "Give to players", Id = "GiveToPlayers"
}
};
} |