Skip to content

SEO-2557 - Xamarin. Android renamed image alt text #224

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 2 commits into
base: hotfix/hotfix-v20.2.0.43
Choose a base branch
from
Open
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions xamarin-android/SfAutoComplete/Getting-Started.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
layout : post
title : Getting Started with Syncfusion AutoComplete Control for Xamarin.Android
description : A quick tour to initial users on Syncfusion SfAutoComplete control for Xamarin.Android platform
title : Getting Started with Xamarin.Android AutoComplete Control | Syncfusion
description : Learn here all about getting started with Syncfusion Essential Xamarin.Android SfAutoComplete control, its elements and more
platform : Xamarin.Android
control : SfAutoComplete
documentation : ug
---

# Getting Started
# Getting Started with Xamarin.Android SfAutoComplete

This section explains you the steps to configure a SfAutoComplete control in a real-time scenario and also provides a walk-through on some of the customization features available in SfAutoComplete control.

Expand Down Expand Up @@ -132,7 +132,7 @@ SetContentView(linearLayout);

{% endtabs %}

![](images/gettingstarted.png)
![Xamarin.Android SfAutoComplete set filter mode](images/gettingstarted.png)

## Creating AutoComplete control in AXML layout

Expand Down
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 about sorting support in Syncfusion Essential Xamarin.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