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!

1
Vote
When using the following example code, the OnRecordClick event does not trigger on my iPad:



It does trigger the event on my iPad using version 18.1.0.59

The event is triggered in Windows 10 and Android Version 10 with One UI version 2.1.
The iPad I am using is an older model, Version 10.3.3 (14G60) model MD512LL/A.  Since it works using Syncfusion Blazor 
version 18.1.0.59, I expected it to work using version 18.2.0.48.


<GridEvents OnRecordDoubleClick="RecordDoubleClickHandler" OnActionComplete="ActionComplete" TValue="PersonModel"></GridEvents>


public void RecordDoubleClickHandler(RecordDoubleClickEventArgs args)
{
    if (args.RowData != null)
    {
        uriHelper.NavigateTo($"/individual/{args.RowData.Id}");
    }
}