BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi Saikrishna,
Thank you for your interest in Syncfusion products.
Please refer to the following dashboard sample path which is helpful for your reference. In our grid control have not inbuilt support for sort but we have achieved by manually.
Grid Control:
{Installed path}\Syncfusion\EssentialStudio\{Version}\Windows\Grid.Windows\Samples\2.0\Grid Layout\Sorting Demo\CS
GridGroupingControl:
{Installed path}\Syncfusion\EssentialStudio\{Version}\Windows\Grid.Grouping.Windows\Samples\2.0\Filters and Expressions\Filter By DisplayMember Demo\CS
Let me know if you have any further concerns.
Regards,
Ragamathullah B.
Hi Sergii,
Thanks for the update.
If you want to set the Excel filter in a grid, you can use the GridExcelFilter class and wire the grid. Please refer the below code,
Code:
private GridExcelFilter filter;
// form load
filter = new GridExcelFilter();
this.gridGroupingControl1.TopLevelGroupOptions.ShowFilterBar = true;
for (int i = 0; i < gridGroupingControl1.TableDescriptor.Columns.Count; i++)
{
gridGroupingControl1.TableDescriptor.Columns[i].AllowFilter = true;
}
filter.WireGrid(this.gridGroupingControl1);
Please let us know if you have any concern.
Regards,
Muthukumar K