Null Reference when allowfiltering="true" and GridTemplates->DetailTemplate

Version 19.4.0.47

@page "/test-grid"


@using Syncfusion.Blazor.Grids


<h3>Testing</h3>

<SfGrid DataSource="Items" AllowFiltering="true">

    <GridTemplates>

        <DetailTemplate>

            @{

                var item = (context as Item);

            }

            <span>@item.Value</span>

        </DetailTemplate>

    </GridTemplates>

</SfGrid>


@code {

            public List<Item> Items = new List<Item>()

    {

        new Item(){Key = "Key 1", Value = "Value1" },

        new Item(){Key = "Key 2", Value = "Value2" }

    };

    public class Item

    {

        public string Key { get; set; }

        public string Value { get; set; }

    }

}




3 Replies

RN Rahul Narayanasamy Syncfusion Team January 28, 2022 12:53 PM UTC

Hi Daniel, 

Greetings from Syncfusion. 

We have validated and considered your query as a bug and logged the defect report “Exception throws when grouping a column with FilterBar/ Exception throws while enabling Filtering in Detail Template ” for the same. Thank you for taking the time to report this issue and helping us improve our product. At Syncfusion, we are committed to fixing all validated defects (subject to technological feasibility and Product Development Life Cycle) and will include the fix in our upcoming patch release which is expected to be rolled out on or before first week of February, 2022. Until then we appreciate your patience.  
  
You can now track the current status of your request, review the proposed resolution timeline, and contact us for any further inquiries through this link.   


Regards 
Rahul 



RN Rahul Narayanasamy Syncfusion Team February 7, 2022 01:31 PM UTC

Hi Daniel,  

We are glad to announce that, we have resolved the reported issue “Exception throws when grouping a column with FilterBar/ Exception throws while enabling Filtering in Detail Template” in our release(19.4.0.48).  So please upgrade to our latest version of Syncfusion NuGet package to resolve the reported issue. Please find the NuGet package and release notes for latest fixes and features from below.  


We thank you for your support and appreciate your patience in waiting for this release. Please get in touch with us if you would require any further assistance.   
    
Regards,              
Rahul 



RN Rahul Narayanasamy Syncfusion Team February 7, 2022 01:33 PM UTC

Hi Daniel,  

We are glad to announce that, we have resolved the reported issue “Exception throws when grouping a column with FilterBar/ Exception throws while enabling Filtering in Detail Template” in our release(19.4.0.48).  So please upgrade to our latest version of Syncfusion NuGet package to resolve the reported issue. Please find the NuGet package and release notes for latest fixes and features from below.  


We thank you for your support and appreciate your patience in waiting for this release. Please get in touch with us if you would require any further assistance.   
    
Regards,              
Rahul 


Loader.
Up arrow icon