Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

2
Votes

When using your example at 

https://blazor.syncfusion.com/documentation/datagrid/editing/#dialog-template to create a grid with EditMode.Dialog, if you add a SfCheckBox to the Template, as explained at  https://blazor.syncfusion.com/demos/buttons/checkbox and check the box, you get a 

"System.NullReferenceException: Object reference not set to an instance of an object" thrown.


If you set "isChecked = true;" in the code and edit a selected row, the exception is thrown right away.

This worked in version 18.1.0.59


<SfCheckBox Label="Default" @bind-Checked="isChecked"></
SfCheckBox>

@code{

    private bool isChecked = false;

}

Attached is the full example code that throws an exception.