You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: xamarin-android/SfDataGrid/Getting-Started.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
layout: post
3
3
title: Getting started | SfDataGrid | Xamarin.Android | Syncfusion
4
4
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
6
6
control: SfDataGrid
7
7
documentation: ug
8
8
---
@@ -25,7 +25,7 @@ To install the required NuGet for the SfDataGrid control in the application, con
25
25
26
26
Refer to the following KB to configure the NuGet package of the Syncfusion components:
27
27
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)
29
29
30
30
The following NuGet package should be installed to use the SfDataGrid control in the application
31
31
@@ -176,7 +176,7 @@ namespace Custom_Designer
176
176
177
177
{% endtabs %}
178
178
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).
180
180
181
181
Refer to this link to know the properties that can be configured through designer for SfDataGrid.
182
182
@@ -353,7 +353,7 @@ Now, run the application to render the following output.
353
353
354
354
## Defining columns
355
355
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.
357
357
358
358
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.
359
359
@@ -412,7 +412,7 @@ dataGrid.SortColumnDescriptions.Add (new SortColumnDescription () { ColumnNa
412
412
413
413
## Grouping
414
414
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.
416
416
417
417
{% highlight c# %}
418
418
dataGrid.GroupColumnDescriptions.Add (new GroupColumnDescription () { ColumnName = "Product" });
@@ -426,7 +426,7 @@ Run the application to render the following output.
426
426
427
427
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.
428
428
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.
430
430
431
431
## Loading the data grid with customized height and width
0 commit comments