Exception on custom search with grid

Hi,

I want to customize searching in a Grid<ExpandedObject> with dynamic column  but I get exception as shown in the attached image

Image_1463_1753354121868


1 Reply

PS Prathap Senthil Syncfusion Team July 25, 2025 04:53 AM UTC

Hi Kaouthar,


Greetings from Syncfusion,


Based on the reported problem, we suspect that the grid instance is not defined properly. In these cases, you will face issues. Please ensure that the grid reference is properly defined.

<SfGrid TValue="ExpandoObject" @ref=Grid DataSource="@GridData" >

    <GridColumns>

        @if (GridData != null && GridData.Any())

        {

            foreach (var item in (IDictionary<string, object>)GridData.First())

            {

                <GridColumn Field="@item.Key"></GridColumn>

            }

        }

    </GridColumns>

</SfGrid>

 

@code {

 

    public SfGrid<ExpandoObject> Grid { get; set; }


However, we tried to reproduce the issue but were unable to do so. For your reference, we have attached a sample project and a screenshot. To further investigate the issue, we need additional clarification from your side. Please provide the following details to help us proceed:

  • To help us analyze the issue, could you provide a simple, reproducible sample that demonstrates the problem? This will allow us to identify the issue more effectively and provide a resolution.
  • Alternatively, you could share your attempt to replicate the issue using the attached sample

The information you provide will be very helpful in validating the reported query on our end and in providing a solution as quickly as possible. Thank you for your understanding.


Sample:
https://www.syncfusion.com/downloads/support/directtrac/general/ze/DataGridSample

Regards,
Prathap Senthil


Loader.
Up arrow icon