Articles in this section
Category / Section

How to navigate to an URL when tapping on a cell in Xamarin.Forms DataGrid?

1 min read

SfDataGrid allows you to navigate to an URL when tapping on a grid cell using the GridTapped event. The GridTappedEventArgs provides you the “RowColumnIndex” of the tapped cell, so you can navigate to the required URL, based on the argument values.

Refer the below code example to navigate to an URL when the first cell of the record is tapped.

dataGrid.GridTapped += DataGrid_GridTapped;
 
private void DataGrid_GridTapped(object sender, GridTappedEventsArgs e)
{
    if (e.RowColumnindex.RowIndex == 1 && e.RowColumnindex.ColumnIndex == 0)
    {
        Uri uri = new Uri("https://help.syncfusion.com/");
        Device.OpenUri(uri);
    }
}

 

Screenshot:

C:\Users\suhasini.suresh\AppData\Local\Microsoft\Windows\INetCacheContent.Word\NavigateOnCellTap.png

 

Sample Link:

How to navigate to an URL when tapping on a cell in SfDataGrid?

 

 

Conclusion

I hope you enjoyed learning about how to navigate to an URL when tapping on a cell.


You can refer to our Xamarin.Forms DataGrid feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied