The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Is it possible to use Find/Replace functionality in GridGrouping control.
According this what are the equivalents of:
.ForceCurrentCellMoveTo
.CurrentCell.MoveTo();
in GridGrouping control
Thanx
ADAdministrator Syncfusion Team April 21, 2004 02:55 PM UTC
Hi Steven,
we don''t have Find/Replace support yet in the GridGrouping control but we''ll create a sample for that. We''ll post when we have one working. But it can be a couple of weeks.
Regarding the other question: Just call
gridGroupingControl.Table.Records[0].SetCurrent();
from OnLoad or your form ctor.
Stefan
CVCatinat VelmourouganJuly 19, 2005 01:29 PM UTC
hi
Is the sample ready?
regards,
Catinat
ADAdministrator Syncfusion Team July 19, 2005 05:33 PM UTC
You can use the find/replace support inherited from GridControlbase to search records in a flat table.
http://www.syncfusion.com/Support/user/uploads/GGC_Find_17c6dcc0.zip
But to search grouped tables or nested tabled requires a different approach as you have to iterate through Table.Records and use record.GetValue to get at particular fields for an arbitrary GridGroupingControl. Most of the time, it would be more efficient to use special knowledge of your datasource to search it directly and not go through the grid.