Skip to content

Commit 3651a7e

Browse files
Merge pull request #551 from syncfusion-content/SEO-187681-page-with-redirect-xamarin-android
SEO-187681-page-with-redirect-xamarin-android
2 parents 9c751df + 34408dc commit 3651a7e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

xamarin-android/SfDataGrid/Getting-Started.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: post
33
title: Getting started | SfDataGrid | Xamarin.Android | Syncfusion
44
description: Getting started with Xamarin.Android DataGrid and walk through to create a demo application from the scratch.
5-
platform: Xamarin.Android
5+
platform: xamarin.android
66
control: SfDataGrid
77
documentation: ug
88
---
@@ -25,7 +25,7 @@ To install the required NuGet for the SfDataGrid control in the application, con
2525

2626
Refer to the following KB to configure the NuGet package of the Syncfusion components:
2727

28-
[How to configure package source and install Syncfusion NuGet packages in an existing project?](https://www.syncfusion.com/kb/7441/how-to-configure-package-source-and-install-syncfusion-nuget-packages-in-an-existing-project)
28+
[How to configure package source and install Syncfusion NuGet packages in an existing project?](https://support.syncfusion.com/kb/article/6565/how-to-configure-package-source-and-install-in-xamarin-datagrid)
2929

3030
The following NuGet package should be installed to use the SfDataGrid control in the application
3131

@@ -176,7 +176,7 @@ namespace Custom_Designer
176176

177177
{% endtabs %}
178178

179-
You can download the entire source code of this demo [here](http://www.syncfusion.com/downloads/support/directtrac/general/ze/Designer_Support_SfDataGrid_Android429337173).
179+
You can download the entire source code of this demo [here](https://www.syncfusion.com/downloads/support/directtrac/general/ze/Designer_Support_SfDataGrid_Android429337173).
180180

181181
Refer to this link to know the properties that can be configured through designer for SfDataGrid.
182182

@@ -353,7 +353,7 @@ Now, run the application to render the following output.
353353

354354
## Defining columns
355355

356-
By default, the data grid automatically creates the column for all the properties in the data source. The type of the generated column depends on the type of data in the column. When the column is auto generated, handle the [SfDataGrid.AutoGeneratingColumn](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.SfDataGrid.html) event to customize or cancel the columns before it is added to the Columns collection in the data grid.
356+
By default, the data grid automatically creates the column for all the properties in the data source. The type of the generated column depends on the type of data in the column. When the column is auto generated, handle the [SfDataGrid.AutoGeneratingColumn](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.SfDataGrid.html#Syncfusion_SfDataGrid_SfDataGrid_AutoGeneratingColumn) event to customize or cancel the columns before it is added to the Columns collection in the data grid.
357357

358358
Columns can also be manually defined by setting the [SfDataGrid.AutoGenerateColumns](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.SfDataGrid.html#Syncfusion_SfDataGrid_SfDataGrid_AutoGenerateColumns) property to false and by adding the [GridColumn](http://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.GridColumn.html) objects to the [SfDataGrid.Columns](http://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.GridColumn.html) collection. The following code example illustrates how this can be done.
359359

@@ -412,7 +412,7 @@ dataGrid.SortColumnDescriptions.Add (new SortColumnDescription () { ColumnNa
412412

413413
## Grouping
414414

415-
The data grid allows grouping a column by adding the column to the [SfDataGrid.GroupColumnDescriptions](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.SfDataGrid.html#Syncfusion_SfDataGrid_SfDataGrid_SortColumnDescriptions) collection as follows.
415+
The data grid allows grouping a column by adding the column to the [SfDataGrid.GroupColumnDescriptions](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.SfDataGrid.html#Syncfusion_SfDataGrid_SfDataGrid_GroupColumnDescriptions) collection as follows.
416416

417417
{% highlight c# %}
418418
dataGrid.GroupColumnDescriptions.Add (new GroupColumnDescription () { ColumnName = "Product" });
@@ -426,7 +426,7 @@ Run the application to render the following output.
426426

427427
The data grid allows selecting the row or rows by setting the [SfDataGrid.SelectionMode](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.SfDataGrid.html#Syncfusion_SfDataGrid_SfDataGrid_SelectionMode) property. You can set the `SfDataGrid.SelectionMode` property to single, multiple, single deselect, or none. Information about the selected row or rows can be tracked using the [SfDataGrid.SelectedItem](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.SfDataGrid.html#Syncfusion_SfDataGrid_SfDataGrid_SelectedItem) and [SfDataGrid.SelectedItems](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.SfDataGrid.html#Syncfusion_SfDataGrid_SfDataGrid_SelectedItems) properties.
428428

429-
You can handle the selection operations with the help of the [SelectionChanging](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.SfDataGrid.html) and [SelectionChanged](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.SfDataGrid.html) events of the data grid.
429+
You can handle the selection operations with the help of the [SelectionChanging](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.SfDataGrid.html#Syncfusion_SfDataGrid_SfDataGrid_SelectionChanging) and [SelectionChanged](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfDataGrid.SfDataGrid.html#Syncfusion_SfDataGrid_SfDataGrid_SelectionChanged) events of the data grid.
430430

431431
## Loading the data grid with customized height and width
432432

0 commit comments

Comments
 (0)