Skip to content

Commit 3cfb450

Browse files
Integrated latest changes at 10-19-2024 1:30:14 AM
1 parent 6af6113 commit 3cfb450

File tree

12 files changed

+126
-126
lines changed

12 files changed

+126
-126
lines changed

ej2-angular/appearance/overview.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3026,6 +3026,6 @@ The following list of common variables is used in the Syncfusion Angular library
30263026

30273027
## Suggested link
30283028

3029-
* [Syncfusion icons and Customization](../appearance/icons/)
3030-
* [Theme studio for Syncfusion Component](../appearance/theme-studio/)
3031-
* [Angular with SCSS compilation](../common/how-to/sass/)
3029+
* [Syncfusion icons and Customization](../appearance/icons)
3030+
* [Theme studio for Syncfusion Component](../appearance/theme-studio)
3031+
* [Angular with SCSS compilation](../common/how-to/sass)

ej2-angular/drop-down-list/data-binding.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ platformBrowserDynamic().bootstrapModule(AppModule);
179179
## See Also
180180

181181
* [How to load data using template](./templates#item-template)
182-
* [How to group the data using header](./grouping/)
183-
* [How to filter the bound data](./filtering/)
184-
* [How to get the count of the data when using remote data](./how-to/remote-data-bind/)
185-
* [How to achieve cascading](./how-to/cascading/)
186-
* [How to add item in between the options](./how-to/add-item/)
187-
* [How to remove an item](./how-to/remove-item/)
182+
* [How to group the data using header](./grouping)
183+
* [How to filter the bound data](./filtering)
184+
* [How to get the count of the data when using remote data](./how-to/remote-data-bind)
185+
* [How to achieve cascading](./how-to/cascading)
186+
* [How to add item in between the options](./how-to/add-item)
187+
* [How to remove an item](./how-to/remove-item)

ej2-angular/grid/columns/columns.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ In Syncfusion Angular Grid, Columns are fundamental elements that play a pivotal
1414

1515
## Column types
1616

17-
The Syncfusion Grid component allows you to specify the type of data that a column binds using the [columns.type](https://ej2.syncfusion.com/angular/documentation/api/grid/column/#type) property. The `type` property is used to determine the appropriate [format](https://ej2.syncfusion.com/angular/documentation/api/grid/column/#format), such as [number](../../common/internationalization/#number-formatting) or [date](../../common/internationalization/#manipulating-datetime), for displaying the column data.
17+
The Syncfusion Grid component allows you to specify the type of data that a column binds using the [columns.type](https://ej2.syncfusion.com/angular/documentation/api/grid/column/#type) property. The `type` property is used to determine the appropriate [format](https://ej2.syncfusion.com/angular/documentation/api/grid/column/#format), such as [number](../../common/internationalization#number-formatting) or [date](../../common/internationalization#manipulating-datetime), for displaying the column data.
1818

1919
Grid supports the following column types:
2020

@@ -597,7 +597,7 @@ let fieldNames = this.grid.getColumnFieldNames()
597597
598598
### Updating column definitions
599599

600-
You can update the column definitions in the Grid using the [columns](https://ej2.syncfusion.com/angular/documentation/api/grid/column) property. You can modify the properties of the column objects in the columns array to update the columns dynamically. For example, you can change the headerText, width, visible, and other properties of a column to update its appearance and behavior in the grid and then call the [refreshColumns](https://ej2.syncfusion.com/angular/documentation/api/grid/#refreshcolumns) method to apply the changes to the grid.
600+
You can update the column definitions in the Grid using the [columns](https://ej2.syncfusion.com/angular/documentation/api/grid/column/) property. You can modify the properties of the column objects in the columns array to update the columns dynamically. For example, you can change the headerText, width, visible, and other properties of a column to update its appearance and behavior in the grid and then call the [refreshColumns](https://ej2.syncfusion.com/angular/documentation/api/grid/#refreshcolumns) method to apply the changes to the grid.
601601

602602
{% tabs %}
603603
{% highlight ts tabtitle="app.component.ts" %}
@@ -613,7 +613,7 @@ You can update the column definitions in the Grid using the [columns](https://ej
613613

614614
### Adding/Removing Columns
615615

616-
The Grid component allows you to dynamically add or remove columns to and from the grid using the [columns](https://ej2.syncfusion.com/angular/documentation/api/grid/column) property, which can be accessed through the instance of the Grid.
616+
The Grid component allows you to dynamically add or remove columns to and from the grid using the [columns](https://ej2.syncfusion.com/angular/documentation/api/grid/column/) property, which can be accessed through the instance of the Grid.
617617

618618
To add a new column to the Grid, you can directly **push** the new column object to the columns property.To remove a column from the Grid, you can use the **pop** method, which removes the last element from the columns array of the Grid. Alternatively, you can use the splice method to remove a specific column from the columns array.
619619

ej2-angular/grid/selection/selection.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ The following example demonstrates how to enable the toggle selection for both c
116116

117117
The clear selection programmatically feature is particularly useful when you need to remove the selected rows or cells or columns from the Grid component.
118118

119-
To clear the selection in the component programmatically, you can use the [clearSelection](https://ej2.syncfusion.com/angular/documentation/api-grid.html#clearSelection) method.
119+
To clear the selection in the component programmatically, you can use the [clearSelection](https://ej2.syncfusion.com/angular/documentation/api/grid/selection/#clearselection) method.
120120

121-
In the following example, it demonstrates how to clear all selection by calling the [clearSelection](https://ej2.syncfusion.com/angular/documentation/api-grid.html#clearSelection) method in the button click event.
121+
In the following example, it demonstrates how to clear all selection by calling the [clearSelection](https://ej2.syncfusion.com/angular/documentation/api/grid/selection/#clearselection) method in the button click event.
122122

123123
{% tabs %}
124124
{% highlight ts tabtitle="app.component.ts" %}

0 commit comments

Comments
 (0)