2X faster development
The ultimate Xamarin UI toolkit to boost your development speed.
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:
Sample Link: How to navigate to an URL when tapping on a cell in SfDataGrid?
|
2X faster development
The ultimate Xamarin UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.