We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Unfortunately, activation email could not send to your email. Please try again.
Syncfusion Feedback

How to perform long press operation in SfDataGrid?

Platform: Xamarin.Forms |
Control: SfDataGrid
Tags: grid_events

You can perform the long press operations in SfDataGrid by hooking the SfDataGrid.GridLongPressed event.

Refer the below code example in which the SfDataGrid is loaded and the GridLongPressed event is hooked.

<ContentPage.BindingContext>
    <local:ViewModel x:Name="viewModel"/>
  </ContentPage.BindingContext>
<ContentPage.Content>
  <syncfusion:SfDataGrid x:Name="datagrid"
                         ColumnSizer="Star"
                         AutoGenerateColumns="True"
                         ItemsSource="{Binding OrdersInfo}"
                         GridLongPressed="Datagrid_GridLongPressed">
</syncfusion:SfDataGrid>
</ContentPage.Content>

 

The below code illustrates displaying a DisplayAlert to display the underlying data of the long pressing row.

private void Datagrid_GridLongPressed(object sender, Syncfusion.SfDataGrid.XForms.GridLongPressedEventsArgs e)
        {
            //You can perform any operation here based on the requirements
 
            //Code to display a DisplayAlert showing the underlying data.
            string name = (e.RowData as StudentInfo).StudentName;
            string regNo = (e.RowData as StudentInfo).StudentRegno;
            DisplayAlert(name, "RegNO"+ regNo.ToString(), "Cancel");
        }

 

Screenshot:

Table

 

Sample Link:

How to perform long press operation in SfDataGrid?

2X faster development

The ultimate Xamarin UI toolkit to boost your development speed.
ADD COMMENT
You must log in to leave a comment

Please sign in to access our KB

This page will automatically be redirected to the sign-in page in 10 seconds.

Up arrow icon

Warning Icon You are using an outdated version of Internet Explorer that may not display all features of this and other websites. Upgrade to Internet Explorer 8 or newer for a better experience.Close Icon

Live Chat Icon For mobile