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: ej2-angular/grid/data-binding/data-binding.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -186,4 +186,4 @@ The following code demonstrates, how to use the `changeDataSource` method to bin
186
186
## See also
187
187
188
188
*[Binding a firebase data source to Grid using AngularFire2](https://www.syncfusion.com/blogs/post/binding-a-firebase-data-source-to-grid-using-angularfire2.aspx)
189
-
*[How to bind SQL Server data in Angular DataGrid using SqlClient data provider](https://www.syncfusion.com/kb/11453/how-to-bind-sql-server-data-in-angular-datagrid-using-sqlclient-data-provider)
189
+
*[How to bind SQL Server data in Angular DataGrid using SqlClient data provider](https://support.syncfusion.com/kb/article/11679/how-to-bind-sql-server-data-in-angular-datagrid-using-sqlclient-data-provider)
Copy file name to clipboardExpand all lines: ej2-angular/grid/editing/edit-types.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
layout: post
3
3
title: Edit types in Angular Grid component | Syncfusion
4
-
description: Learn here all about Edit types in Syncfusion Angular Grid component of Syncfusion Essential JS 2 and more.
4
+
description: Learn here all about edit types in Angular Grid component of Syncfusion Essential JS 2 and more details.
5
5
platform: ej2-angular
6
6
control: Edit types
7
7
documentation: ug
@@ -46,7 +46,7 @@ You can customize the default TextBox component in Grid edit form using its prop
46
46
47
47
Component|Edit Type |Description|Example Customized edit params
48
48
-----|---|-----|-----|
49
-
[TextBox](../../textbox) |stringedit| The `stringedit` type renders a TextBox component for string data type columns. To customize the `TextBox` component, refer to the [TextBox API documentation](https://ej2.syncfusion.com/angular/documentation/api/textbox) for detailed information on available properties | params: { showClearButton : true}
49
+
[TextBox](../../textbox) |stringedit| The `stringedit` type renders a TextBox component for string data type columns. To customize the `TextBox` component, refer to the [TextBox API documentation](https://ej2.syncfusion.com/angular/documentation/api/textbox/) for detailed information on available properties | params: { showClearButton : true}
50
50
51
51
The following sample code demonstrates the customization applied to TextBox component of **CustomerID** Grid column:
52
52
@@ -112,7 +112,7 @@ You can customize the `DropDownList` component in Grid edit form using its prope
112
112
113
113
Component|Edit Type |Description| Example Customized edit params
114
114
-----|-----|-----|----|
115
-
[DropDownList](../../drop-down-list)-|DropDownEdit| The `dropdownedit` type renders a DropDownList component for string data type columns. To customize the DropDownList component, refer to the [DropDownList API documentation](https://ej2.syncfusion.com/angular/documentation/api/drop-down-list) for detailed information on available properties. | params: { value: ‘Germany’ }
115
+
[DropDownList](../../drop-down-list)-|DropDownEdit| The `dropdownedit` type renders a DropDownList component for string data type columns. To customize the DropDownList component, refer to the [DropDownList API documentation](https://ej2.syncfusion.com/angular/documentation/api/drop-down-list/) for detailed information on available properties. | params: { value: ‘Germany’ }
116
116
117
117
The following sample code demonstrates the customization applied to DropDownList component of **ShipCity** Grid column:
118
118
@@ -134,7 +134,7 @@ In Syncfusion's Grid component, you have an option to provide a custom data sour
134
134
135
135
To achieve this, you can utilize the [columns->edit->params](https://ej2.syncfusion.com/angular/documentation/api/grid/column/#edit) property. This property allows you to define the edit params for the column within the grid.
136
136
137
-
When setting a new data source using the edit params, you need to specify a new [query](https://ej2.syncfusion.com/angular/documentation/api/drop-down-list#query) property for the DropDownList. The `query` property allows you to define custom queries for data retrieval and filtering.
137
+
When setting a new data source using the edit params, you need to specify a new [query](https://ej2.syncfusion.com/angular/documentation/api/drop-down-list/#query) property for the DropDownList. The `query` property allows you to define custom queries for data retrieval and filtering.
138
138
139
139
In the below demo, DropDownList is rendered with custom data source for the **ShipCountry** column :
140
140
@@ -154,7 +154,7 @@ In the below demo, DropDownList is rendered with custom data source for the **Sh
154
154
155
155
The Syncfusion Grid component provides filtering for the DropDownList within the edit form. This feature allows to select options from a predefined list and easily search for specific items using the built-in filtering feature.
156
156
157
-
To enable filtering, set the [allowFiltering](https://ej2.syncfusion.com/angular/documentation/api/drop-down-list#allowfiltering) property to **true** within the edit params. This will enable the filtering feature in the DropDownList.
157
+
To enable filtering, set the [allowFiltering](https://ej2.syncfusion.com/angular/documentation/api/drop-down-list/#allowfiltering) property to **true** within the edit params. This will enable the filtering feature in the DropDownList.
158
158
159
159
In the following demo, filtering is enabled for the **ShipCountry** column:
160
160
@@ -242,7 +242,7 @@ You can customize the DateTimePicker component in Grid edit form using its prope
242
242
243
243
Component|Edit Type |Description |Example Customized edit params
244
244
-----|-----|-----|----|
245
-
[DateTimePicker](../../datetimepicker)| datetimepickeredit | The `datetimepickeredit` type renders a **DateTimePicker** component for date time data type columns. You can customize the DateTimePicker component, refer to the [DateTimePicker API documentation](https://ej2.syncfusion.com/angular/documentation/api/datetimepicker) for detailed information on available properties. | params: { value: new Date() }
245
+
[DateTimePicker](../../datetimepicker)| datetimepickeredit | The `datetimepickeredit` type renders a **DateTimePicker** component for date time data type columns. You can customize the DateTimePicker component, refer to the [DateTimePicker API documentation](https://ej2.syncfusion.com/angular/documentation/api/datetimepicker/) for detailed information on available properties. | params: { value: new Date() }
246
246
247
247
The following sample code demonstrates the customization applied to DatePicker component of **OrderDate** Grid column:
0 commit comments