Is there a way to add a few buttons in addition to the search feature on tool bar? For example,
<Syncfusion.Blazor.Grids.SfGrid DataSource="@clientsactive" Toolbar="Toolbar" AllowPaging="true">
@{
List<ItemModel> Toolbar = new List<ItemModel>();
Toolbar.Add(new ItemModel { Text = "Copy", TooltipText = "Copy", PrefixIcon = "e-copy", Id = "copy" });
Toolbar.Add(new ItemModel { Text = "Copy With Header", TooltipText = "Copy With Header", PrefixIcon = "e-copy", Id = "copyheader" });
Toolbar.Add(new List<string>() { "Search" });
}
and have the buttons to the left and search to the right?