Skip to content

Commit 606eb66

Browse files
Merge pull request #423 from Syncfusion-Content/hotfix/hotfix-v20.3.0.47
DOCINFRA-2341_merged_using_automation
2 parents bc25042 + dace1a1 commit 606eb66

27 files changed

+107
-87
lines changed

wpf/Breadcrumb/Getting-Started.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ The HierarchyNavigator control can be added to an application by dragging it fro
3737
## Add control manually in XAML
3838

3939
To add the control manually in XAML, follow the given steps:
40-
1. Add the following required assembly references to the project:
41-
* Syncfusion.Tools.WPF
42-
* Syncfusion.Shared.WPF
43-
2. Import Syncfusion WPF schema **http://schemas.syncfusion.com/wpf** in the XAML page.
44-
3. Declare the HierarchyNavigator control the in XAML page.
40+
1. Add the following required assembly references to the project:
41+
* Syncfusion.Tools.WPF
42+
* Syncfusion.Shared.WPF
43+
2. Import Syncfusion WPF schema **http://schemas.syncfusion.com/wpf** in the XAML page.
44+
3. Declare the HierarchyNavigator control the in XAML page.
4545

4646
{% capture codesnippet1 %}
4747
{% tabs %}
@@ -65,11 +65,11 @@ To add the control manually in XAML, follow the given steps:
6565

6666
To add the control manually in C#, follow the given steps:
6767

68-
1. Add the following required assembly references to the project:
69-
* Syncfusion.Tools.WPF
70-
* Syncfusion.Shared.WPF
71-
2. Import the HierarchyNavigator namespace **using Syncfusion.Windows.Tools.Controls;**.
72-
3. Create a HierarchyNavigator instance, and add it to the window.
68+
1. Add the following required assembly references to the project:
69+
* Syncfusion.Tools.WPF
70+
* Syncfusion.Shared.WPF
71+
2. Import the HierarchyNavigator namespace **using Syncfusion.Windows.Tools.Controls;**.
72+
3. Create a HierarchyNavigator instance, and add it to the window.
7373

7474
{% capture codesnippet2 %}
7575
{% tabs %}

wpf/Classic/Diagram/Getting-Started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1986,7 +1986,7 @@ N/A</td></tr>
19861986
{%endhighlight%}
19871987

19881988

1989-
2.Then the nodes can be added and the connections can be specified as follows:
1989+
2. Then the nodes can be added and the connections can be specified as follows:
19901990

19911991

19921992

wpf/DataGrid/Export-To-Excel.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ workBook.SaveAs("Sample.xlsx");
3131
{% endhighlight %}
3232
{% endtabs %}
3333

34-
N> SfDataGrid exports data to excel by using [XlsIO](http://help.syncfusion.com/file-formats/xlsio/overview). You can refer [XlsIO documentation](http://help.syncfusion.com/file-formats/xlsio/working-with-excel-worksheet) for manipulating exported work sheets.
34+
N> SfDataGrid exports data to excel by using [XlsIO](https://help.syncfusion.com/file-formats/xlsio/overview). You can refer [XlsIO documentation](https://help.syncfusion.com/file-formats/xlsio/working-with-excel-worksheet) for manipulating exported work sheets.
3535

3636
## Excel exporting options
3737

@@ -188,7 +188,7 @@ workBook.SaveAs(fileStream);
188188
{% endhighlight %}
189189
{% endtabs %}
190190

191-
You can refer [XlsIO documentation](http://help.syncfusion.com/file-formats/xlsio/faq).
191+
You can refer [XlsIO documentation](https://help.syncfusion.com/file-formats/xlsio/faq).
192192

193193
### Save using File dialog
194194

@@ -398,11 +398,11 @@ workBook.SaveAs("Sample.csv", ",");
398398
{% endhighlight %}
399399
{% endtabs %}
400400

401-
Similarly, you can save exported worksheet also to CSV. You can refer [XlsIO documentation.](http://help.syncfusion.com/file-formats/xlsio/working-with-excel-worksheet#save-worksheet-as-csv)
401+
Similarly, you can save exported worksheet also to CSV. You can refer [XlsIO documentation.](https://help.syncfusion.com/file-formats/xlsio/working-with-excel-worksheet#save-worksheet-as-csv)
402402

403403
## Row Height and Column Width customization
404404

405-
After exporting data to excel, you can set different row height and column width for the columns based on your requirement. You can refer [here](http://help.syncfusion.com/file-formats/xlsio/worksheet-rows-and-columns-manipulation#adjust-row-height-and-column-width) for more information.
405+
After exporting data to excel, you can set different row height and column width for the columns based on your requirement. You can refer [here](https://help.syncfusion.com/file-formats/xlsio/worksheet-rows-and-columns-manipulation#adjust-row-height-and-column-width) for more information.
406406

407407
{% tabs %}
408408
{% highlight c# %}
@@ -559,7 +559,7 @@ Here, `OrderID` column cells are customized while exporting.
559559

560560
## Customize exported workbook and worksheet
561561

562-
SfDataGrid exports to excel by using [XlsIO](http://help.syncfusion.com/file-formats/xlsio/overview). You can refer [XlsIO documentation](http://help.syncfusion.com/file-formats/xlsio/working-with-excel-worksheet) for manipulating workbook and sheet after exporting.
562+
SfDataGrid exports to excel by using [XlsIO](https://help.syncfusion.com/file-formats/xlsio/overview). You can refer [XlsIO documentation](https://help.syncfusion.com/file-formats/xlsio/working-with-excel-worksheet) for manipulating workbook and sheet after exporting.
563563

564564
### Workbook
565565
SfDataGrid provides option to return [ExcelEngine](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.ExcelEngine.html) from that you can get exported workbook. This allows you to protect, encrypt and add worksheet before saving.
@@ -590,7 +590,7 @@ workBook.SaveAs("Sample.xlsx");
590590
{% endhighlight %}
591591
{% endtabs %}
592592

593-
Before saving workbook, you need to set the specific excel version by using [IWorkbook.Version](https://help.syncfusion.com/cr/wpf/Syncfusion.XlsIO.IWorkbook.html#Syncfusion_XlsIO_IWorkbook_Version) property. Here, you can directly manipulate the data in the worksheet. You can refer [here](http://help.syncfusion.com/file-formats/xlsio/worksheet-rows-and-columns-manipulation) for more information.
593+
Before saving workbook, you need to set the specific excel version by using [IWorkbook.Version](https://help.syncfusion.com/cr/wpf/Syncfusion.XlsIO.IWorkbook.html#Syncfusion_XlsIO_IWorkbook_Version) property. Here, you can directly manipulate the data in the worksheet. You can refer [here](https://help.syncfusion.com/file-formats/xlsio/worksheet-rows-and-columns-manipulation) for more information.
594594

595595
#### Setting borders
596596

@@ -642,7 +642,7 @@ workBook.SaveAs("Sample.xlsx");
642642
{% endhighlight %}
643643
{% endtabs %}
644644

645-
You can refer [XlsIO documentation](http://help.syncfusion.com/file-formats/xlsio/worksheet-cells-manipulation#data-filtering).
645+
You can refer [XlsIO documentation](https://help.syncfusion.com/file-formats/xlsio/worksheet-cells-manipulation#data-filtering).
646646

647647
#### Customize the range of cells
648648

@@ -757,7 +757,7 @@ You can perform cell level customization such as row-level styling, formatting p
757757
In the below code snippet, NumberFormat for `Unit Price` column is changed in the exported sheet after exporting without using `CellsExportingEventHandler`.
758758

759759
Reference:
760-
[http://help.syncfusion.com/file-formats/xlsio/working-with-cell-or-range-formatting](http://help.syncfusion.com/file-formats/xlsio/working-with-cell-or-range-formatting)
760+
[https://help.syncfusion.com/file-formats/xlsio/working-with-cell-or-range-formatting](https://help.syncfusion.com/file-formats/xlsio/working-with-cell-or-range-formatting)
761761

762762
{% tabs %}
763763
{% highlight c# %}
@@ -778,7 +778,7 @@ workBook.ActiveSheet.Columns[4].NumberFormat = "0.0";
778778
In the below code snippet, the background color of rows in excel is changed based on row index using conditional formatting for better performance.
779779

780780
Reference:
781-
[http://help.syncfusion.com/file-formats/xlsio/working-with-conditional-formatting](http://help.syncfusion.com/file-formats/xlsio/working-with-conditional-formatting)
781+
[https://help.syncfusion.com/file-formats/xlsio/working-with-conditional-formatting](https://help.syncfusion.com/file-formats/xlsio/working-with-conditional-formatting)
782782

783783
{% tabs %}
784784
{% highlight c# %}

wpf/DataGrid/Grouping.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The data can be grouped by an unlimited number of columns. To group more than on
6969
Each group is identified by its `CaptionSummaryRows` and it is used to organize the data into a hierarchical tree structure based on identical values of that column. The underlying records in each caption summary row can be expanded or collapsed by clicking its group caption.
7070

7171

72-
Each `CaptionSummaryRow` carries information about a particular group like group name, number of items (records) in the group, etc. You can refer [Caption Summaries](http://help.syncfusion.com/wpf/sfdatagrid/summaries#caption-summaries) section, for more information about `CaptionSummaryRow`.
72+
Each `CaptionSummaryRow` carries information about a particular group like group name, number of items (records) in the group, etc. You can refer [Caption Summaries](https://help.syncfusion.com/wpf/datagrid/summaries#caption-summaries) section, for more information about `CaptionSummaryRow`.
7373

7474
## Programmatic grouping
7575

@@ -454,7 +454,7 @@ Refer [sample](http://www.syncfusion.com/downloads/support/directtrac/general/ze
454454

455455
Refer [sample](http://www.syncfusion.com/downloads/support/directtrac/general/ze/DataTableCustomGrouping1799878748.zip) for Custom grouping when ItemsSource is DataTable.
456456

457-
You can refer [here](http://help.syncfusion.com/wpf/sfdatagrid/sorting#custom-sorting) to apply custom sorting when grouping is applied.
457+
You can refer [here](https://help.syncfusion.com/wpf/datagrid/sorting#custom-sorting) to apply custom sorting when grouping is applied.
458458

459459
### Sorting the grouped column records
460460

wpf/DataGrid/Master-Details-View.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ dataGrid.DetailsViewDefinition.Add(gridViewDefinition1);
400400

401401
## Generating Master-Details view from DataTable
402402

403-
Master-Details View’s relation can be generated for [DataTable](https://docs.microsoft.com/en-us/dotnet/api/system.data.datatable), when [DataRelation](https://docs.microsoft.com/en-us/dotnet/api/system.data.datarelation) is defined between two tables in underlying [DataSet](https://docs.microsoft.com/en-us/dotnet/api/system.data.dataset).
403+
Master-Details View’s relation can be generated for [DataTable](https://learn.microsoft.com/en-us/dotnet/api/system.data.datatable?view=net-6.0), when [DataRelation](https://docs.microsoft.com/en-us/dotnet/api/system.data.datarelation) is defined between two tables in underlying [DataSet](https://docs.microsoft.com/en-us/dotnet/api/system.data.dataset).
404404

405405
Follow the below steps to generate the Master-Details View’s relation for DataTable,
406406

@@ -761,7 +761,7 @@ N> [AllowFrozenGroupHeaders](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xa
761761

762762
## Defining columns for DetailsViewDataGrid
763763

764-
The [ViewDefinition.DataGrid](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.GridViewDefinition.html#Syncfusion_UI_Xaml_Grid_GridViewDefinition_DataGrid)’s columns can be generated either automatically or manually like parent DataGrid. You can refer [here](http://help.syncfusion.com/wpf/sfdatagrid/columns) to know more about columns.
764+
The [ViewDefinition.DataGrid](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.GridViewDefinition.html#Syncfusion_UI_Xaml_Grid_GridViewDefinition_DataGrid)’s columns can be generated either automatically or manually like parent DataGrid. You can refer [here](https://help.syncfusion.com/wpf/datagrid/columns) to know more about columns.
765765

766766
### Auto-generating columns
767767

@@ -846,7 +846,7 @@ void dataGrid_AutoGeneratingRelations(object sender, Syncfusion.UI.Xaml.Grid.Aut
846846

847847
### Creating Custom Column
848848

849-
You can also define your own column type to [ViewDefinition.DataGrid](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.GridViewDefinition.html#Syncfusion_UI_Xaml_Grid_GridViewDefinition_DataGrid) like parent DataGrid. For more information about creating custom column, refer the [Custom Column support](http://help.syncfusion.com/wpf/sfdatagrid/columns).
849+
You can also define your own column type to [ViewDefinition.DataGrid](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.GridViewDefinition.html#Syncfusion_UI_Xaml_Grid_GridViewDefinition_DataGrid) like parent DataGrid. For more information about creating custom column, refer the [Custom Column support](https://help.syncfusion.com/wpf/datagrid/columns).
850850

851851
After creating the custom column, add the customized renderer to [CellRenderers](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.SfDataGrid.html#Syncfusion_UI_Xaml_Grid_SfDataGrid_CellRenderers) collection of [DetailsViewDataGrid](http://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.DetailsViewDataGrid.html).
852852

@@ -896,7 +896,7 @@ Now, you can add the custom column to `Columns` collection of [ViewDefinition.Da
896896

897897
## Handling events for DetailsViewDataGrid
898898

899-
You can handle [DetailsViewDataGrid](http://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.DetailsViewDataGrid.html) events by wiring events to [ViewDefinition.DataGrid](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.GridViewDefinition.html#Syncfusion_UI_Xaml_Grid_GridViewDefinition_DataGrid) where sender is `ViewDefinition.DataGrid`. In another way, you can handle `DetailsViewDataGrid` events also through `ParentDataGrid` events by setting [NotifyEventsToParentDataGrid](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.SfDataGrid.html#Syncfusion_UI_Xaml_Grid_SfDataGrid_NotifyEventsToParentDataGrid) property of `ViewDefinition.DataGrid`. For more information refer [Listen DetailsViewDataGrid event from ParentDataGrid event handler](https://help.syncfusion.com/wpf/sfdatagrid/master-details-view#listen-detailsviewdatagrid-event-in-parentdatagrid-event-handler) section.
899+
You can handle [DetailsViewDataGrid](http://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.DetailsViewDataGrid.html) events by wiring events to [ViewDefinition.DataGrid](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.GridViewDefinition.html#Syncfusion_UI_Xaml_Grid_GridViewDefinition_DataGrid) where sender is `ViewDefinition.DataGrid`. In another way, you can handle `DetailsViewDataGrid` events also through `ParentDataGrid` events by setting [NotifyEventsToParentDataGrid](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.SfDataGrid.html#Syncfusion_UI_Xaml_Grid_SfDataGrid_NotifyEventsToParentDataGrid) property of `ViewDefinition.DataGrid`. For more information refer [Listen DetailsViewDataGrid event from ParentDataGrid event handler](https://help.syncfusion.com/wpf/datagrid/master-details-view#listen-detailsviewdatagrid-event-in-parentdatagrid-event-handler) section.
900900

901901
### When AutoGenerateRelations is false
902902

@@ -1079,7 +1079,7 @@ var sourceDataGrid = (e.OriginalSender as DetailsViewDataGrid).GetSourceDataGrid
10791079
{% endhighlight %}
10801080
{% endtabs %}
10811081

1082-
Refer [here](https://help.syncfusion.com/wpf/sfdatagrid/selection#getting-the-parent-of-detailsviewdatagrid) for get the `ParentDataGrid` using [GetParentDataGrid](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.Helpers.SelectionHelper.html#Syncfusion_UI_Xaml_Grid_Helpers_SelectionHelper_GetParentDataGrid_Syncfusion_UI_Xaml_Grid_SfDataGrid_) helper method.
1082+
Refer [here](https://help.syncfusion.com/wpf/datagrid/selection#getting-the-parent-of-detailsviewdatagrid) for get the `ParentDataGrid` using [GetParentDataGrid](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.Helpers.SelectionHelper.html#Syncfusion_UI_Xaml_Grid_Helpers_SelectionHelper_GetParentDataGrid_Syncfusion_UI_Xaml_Grid_SfDataGrid_) helper method.
10831083

10841084
### Binding DetailsViewDataGrid event to command in ViewModel
10851085

@@ -1535,7 +1535,7 @@ Here, first and second rows are selected in the `DetailsViewDataGrid` which is p
15351535

15361536
#### Cell selection
15371537

1538-
You can select cells also by using [SelectCell](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.GridCellSelectionController.html#Syncfusion_UI_Xaml_Grid_GridCellSelectionController_SelectCell_System_Object_Syncfusion_UI_Xaml_Grid_GridColumn_System_Boolean_) and [SelectedCells](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.GridCellSelectionController.html#Syncfusion_UI_Xaml_Grid_GridCellSelectionController_SelectCells_System_Object_Syncfusion_UI_Xaml_Grid_GridColumn_System_Object_Syncfusion_UI_Xaml_Grid_GridColumn_System_Boolean_) method. You can refer the [Selection](http://help.syncfusion.com/wpf/sfdatagrid/selection) section.
1538+
You can select cells also by using [SelectCell](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.GridCellSelectionController.html#Syncfusion_UI_Xaml_Grid_GridCellSelectionController_SelectCell_System_Object_Syncfusion_UI_Xaml_Grid_GridColumn_System_Boolean_) and [SelectedCells](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.GridCellSelectionController.html#Syncfusion_UI_Xaml_Grid_GridCellSelectionController_SelectCells_System_Object_Syncfusion_UI_Xaml_Grid_GridColumn_System_Object_Syncfusion_UI_Xaml_Grid_GridColumn_System_Boolean_) method. You can refer the [Selection](https://help.syncfusion.com/wpf/datagrid/selection) section.
15391539

15401540
### Programmatically expand and bring DetailsViewDataGrid into view
15411541

@@ -1597,7 +1597,7 @@ You can get the sample from [here](http://www.syncfusion.com/downloads/support/d
15971597

15981598
### Customizing Selection for DetailsViewDataGrid
15991599

1600-
You can also customize the selection behavior of `DetailsViewDataGrid` like the parent DataGrid. For more information about customizing selection behavior, you can refer [here](http://help.syncfusion.com/wpf/sfdatagrid/selection).
1600+
You can also customize the selection behavior of `DetailsViewDataGrid` like the parent DataGrid. For more information about customizing selection behavior, you can refer [here](https://help.syncfusion.com/wpf/datagrid/selection).
16011601
Follow the steps mentioned in selection customization section to customize selection behavior of [DetailsViewDataGrid](http://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.DetailsViewDataGrid.html) and set the customized selection controller to [DetailsViewDataGrid.SelectionController](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.SfDataGrid.html#Syncfusion_UI_Xaml_Grid_SfDataGrid_SelectionController) in [DetailsViewLoading](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.SfDataGrid.html) event.
16021602

16031603
{% tabs %}
@@ -1626,7 +1626,7 @@ N> For customizing selection in second level nested grid, you can refer [here](#
16261626

16271627
## Appearance customization
16281628

1629-
The visual appearance of [DetailsViewDataGrid](http://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.DetailsViewDataGrid.html) can be customized like parent DataGrid through [Styling and Templates support](http://help.syncfusion.com/wpf/sfdatagrid/styles-and-templates) in SfDataGrid.
1629+
The visual appearance of [DetailsViewDataGrid](http://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.DetailsViewDataGrid.html) can be customized like parent DataGrid through [Styling and Templates support](https://help.syncfusion.com/wpf/datagrid/styles-and-templates) in SfDataGrid.
16301630

16311631
### Changing Header appearance of DetailsViewDataGrid
16321632

wpf/DataGrid/Paging.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,7 @@ Follow the below steps to load the `ItemsSource` for page in on-demand,
154154

155155
N> Do not assign `SfDataPager.Source` property while using `OnDemandPaging`.
156156

157-
158-
157+
{% capture codesnippet2 %}
159158
{% tabs %}
160159
{% highlight xaml %}
161160
<Grid>
@@ -191,6 +190,8 @@ private void dataPager_OnDemandLoading(object sender, Syncfusion.UI.Xaml.Control
191190
}
192191
{% endhighlight %}
193192
{% endtabs %}
193+
{% endcapture %}
194+
{{ codesnippet2 | OrderList_Indent_Level_1 }}
194195

195196

196197
### Resetting cache

0 commit comments

Comments
 (0)