Hi,
t is possible to export only the filtered records, if I have a table with 50,000 rows when calling Grid.Table.ExpandAllRecords (), it expands all the records, but I only need to expand and export the filtered.
A "solution"
foreach (Record r in DgPedidos.Grid.Table.FilteredRecords)
{
r.IsExpanded = true;
if (r != null)
{
r.NestedTables[0].IsExpanded = true;
foreach (Record rec in r.NestedTables[0].Records)
{
if (rec != null)
{
if (rec.NestedTables.Count > 0)
rec.NestedTables[0].IsExpanded = false;
}
}
}
}
Thanks