Skip to content

SEO-2488 - Xamarine-Andriod image alt text changes #212

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: hotfix/hotfix-v20.2.0.36
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions xamarin-android/SfDataGrid/Sorting.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
layout: post
title: Sorting | SfDataGrid | Xamarin.Android | Syncfusion
description: How to sort the data and about the properties and events that involve in sorting in a SfDataGrid.
description: Learn here all about sorting support in Syncfusion Essential Xamarine.Android SFDataGrid control, its elements, and more..
platform: Xamarin.Android
control: SfDataGrid
documentation: UG
---

# Sorting
# Sorting in Xamarin.Android SFDataGrid

The dataGrid allows sorting on its data by setting the [SfDataGrid.AllowSorting](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.GridColumn.html#Syncfusion_SfDataGrid_GridColumn_AllowSorting) property to `true`. It allows sorting the data against one or more columns. When sorting is applied, the data grid automatically rearranges the data to match with the current sort criteria. When the `SfDataGrid.AllowSorting` is `true`, you can sort the data simply by tapping the column header. Once sorting is applied, the data grid shows a sort icon in the respective column header indicating the direction of sorting.

Expand Down Expand Up @@ -44,7 +44,7 @@ The following code example shows how to enable tri-state sorting in the data gri
dataGrid.AllowTriStateSorting = true;
{% endhighlight %}

![](SfDataGrid_images/Tristate_Sorting.gif)
![Xamarin.Android SFDataGrid tri-state sorting](SfDataGrid_images/Tristate_Sorting.gif)

## Multi-column sorting

Expand All @@ -56,7 +56,7 @@ The following code example shows how to enable multi-sorting in the data grid:
dataGrid.AllowMultiSorting = true;
{% endhighlight %}

![](SfDataGrid_images/MultiColumn_Sorting.gif)
![Xamarin.Android SFDataGrid multi column sorting](SfDataGrid_images/MultiColumn_Sorting.gif)

## Sort column by double click

Expand All @@ -71,7 +71,7 @@ dataGrid.SortTapAction=SortTapAction.DoubleTap;
{% endhighlight %}

The following screenshot shows the sorting functionality in the data grid:
![](SfDataGrid_images/Sorting.png)
![Xamarin.Android SFDataGrid sort-column by double click](SfDataGrid_images/Sorting.png)

## Sorting events

Expand Down