Skip to content

Commit 1452261

Browse files
971532: Navigation link issue
1 parent 068080b commit 1452261

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/editing/edit-types.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ The available default edit types are as follows:
1818

1919
Component|Edit Type value |Description
2020
----|-----|-----
21-
[TextBox](../../textbox)|stringedit | The `stringedit` type renders a TextBox component for string data type columns.
22-
[NumericTextBox](../../numerictextbox)|numericedit | The `numericedit` type renders a NumericTextBox component for integers,double,float ,short ,byte ,long ,long double and decimal data types columns.
23-
[DropDownList](../../drop-down-list)|dropdownedit | The `dropdownedit` type renders a DropdownList component for string data type columns.
24-
[Checkbox](../../check-box)|booleanedit | The `booleanedit` type renders a CheckBox component for boolean data type columns.
25-
[DatePicker](../../datepicker)|datepickeredit |The `datepickeredit` type renders a DatePicker component for date data type columns.
26-
[DateTimePicker](../../datetimepicker)|datetimepickeredit | The `datetimepickeredit` type renders a DateTimePicker component for date time data type columns.
21+
[TextBox](../../textbox/getting-started)|stringedit | The `stringedit` type renders a TextBox component for string data type columns.
22+
[NumericTextBox](../../numerictextbox/getting-started)|numericedit | The `numericedit` type renders a NumericTextBox component for integers,double,float ,short ,byte ,long ,long double and decimal data types columns.
23+
[DropDownList](../../drop-down-list/getting-started)|dropdownedit | The `dropdownedit` type renders a DropdownList component for string data type columns.
24+
[Checkbox](../../check-box/getting-started)|booleanedit | The `booleanedit` type renders a CheckBox component for boolean data type columns.
25+
[DatePicker](../../datepicker/getting-started)|datepickeredit |The `datepickeredit` type renders a DatePicker component for date data type columns.
26+
[DateTimePicker](../../datetimepicker/getting-started)|datetimepickeredit | The `datetimepickeredit` type renders a DateTimePicker component for date time data type columns.
2727

2828
The following example demonstrates how to define the `editType` for grid columns:
2929

@@ -44,7 +44,7 @@ You can customize the default TextBox component in Grid edit form using its prop
4444

4545
Component|Edit Type |Description|Example Customized edit params
4646
-----|---|-----|-----|
47-
[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://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.inputs.textbox.html#properties) for detailed information on available properties | params: { showClearButton : true}
47+
[TextBox](../../textbox/getting-started) |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://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.inputs.textbox.html#properties) for detailed information on available properties | params: { showClearButton : true}
4848

4949
The following sample code demonstrates the customization applied to TextBox component of **CustomerID** Grid column:
5050

@@ -65,7 +65,7 @@ You can customize the `NumericTextBox` component in Grid edit form using its pro
6565

6666
Component| Edit Type |Description |Example Customized edit params
6767
-----|-----|-----|----|
68-
[NumericTextBox](../../numerictextbox)|numericedit| TThe `numericedit` type renders a NumericTextBox component for integers, double, float, short, byte, long, long double and decimal data types columns. To customize the **NumericTextBox** component, refer to the [NumericTextBox API documentation](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.inputs.numerictextbox.html) for detailed information on available properties. | params: { decimals: 2, value: 5 }
68+
[NumericTextBox](../../numerictextbox/getting-started)|numericedit| TThe `numericedit` type renders a NumericTextBox component for integers, double, float, short, byte, long, long double and decimal data types columns. To customize the **NumericTextBox** component, refer to the [NumericTextBox API documentation](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.inputs.numerictextbox.html) for detailed information on available properties. | params: { decimals: 2, value: 5 }
6969

7070
The following sample code demonstrates the customization applied to NumericTextBox component of **Frieght** Grid column:
7171

@@ -107,7 +107,7 @@ You can customize the `DropDownList` component in Grid edit form using its prope
107107

108108
Component|Edit Type |Description| Example Customized edit params
109109
-----|-----|-----|----|
110-
[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://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.dropdowns.dropdownlist.html) for detailed information on available properties. | params: { value: ‘Germany’ }
110+
[DropDownList](../../drop-down-list/getting-started)|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://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.dropdowns.dropdownlist.html) for detailed information on available properties. | params: { value: ‘Germany’ }
111111

112112
The following sample code demonstrates the customization applied to DropDownList component of **ShipCity** Grid column:
113113

@@ -189,7 +189,7 @@ You can customize the CheckBox component in Grid edit form using its property. T
189189

190190
Component| Edit Type |Description |Example Customized edit params
191191
-----|-----|-----|----|
192-
[CheckBox](../../check-box)| booleanedit | The `booleanedit` type renders a **CheckBox** component for boolean data type. To customize the CheckBox component, refer to the [CheckBox API documentation](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.buttons.checkbox.html) for detailed information on available properties. | params: { checked: true}
192+
[CheckBox](../../check-box/getting-started)| booleanedit | The `booleanedit` type renders a **CheckBox** component for boolean data type. To customize the CheckBox component, refer to the [CheckBox API documentation](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.buttons.checkbox.html) for detailed information on available properties. | params: { checked: true}
193193

194194
The following sample code demonstrates the customization applied to CheckBox component of **Verified** Grid column:
195195

@@ -210,7 +210,7 @@ You can customize the DatePicker component in Grid edit form using its property.
210210

211211
Component| Edit Type |Description|Example Customized edit params
212212
-----|-----|-----|----|
213-
[DatePicker](../../datepicker)| datepickeredit | The `datepickeredit` type renders a **DatePicker** component for date data type columns. To customize the DatePicker component, refer to the [DatePicker API documentation](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.calendars.datepicker.html) for detailed information on available properties. | params: { format:'dd.MM.yyyy' }
213+
[DatePicker](../../datepicker/getting-started)| datepickeredit | The `datepickeredit` type renders a **DatePicker** component for date data type columns. To customize the DatePicker component, refer to the [DatePicker API documentation](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.calendars.datepicker.html) for detailed information on available properties. | params: { format:'dd.MM.yyyy' }
214214

215215
The following sample code demonstrates the customization applied to DatePicker component of **OrderDate** Grid column:
216216

@@ -227,7 +227,7 @@ The following sample code demonstrates the customization applied to DatePicker c
227227

228228
### Disable the date value prior to the selected date value in DatePicker
229229

230-
The Syncfusion ASP.NET Core Grid allows configuring the [DatePicker](../../datepicker) to dynamically set a minimum selectable date. This ensures that users can only select dates that fall after a specified minimum date, based on the data in each row. This feature is particularly useful for maintaining data consistency and preventing users from selecting inappropriate or illogical dates.
230+
The Syncfusion ASP.NET Core Grid allows configuring the [DatePicker](../../datepicker/getting-started) to dynamically set a minimum selectable date. This ensures that users can only select dates that fall after a specified minimum date, based on the data in each row. This feature is particularly useful for maintaining data consistency and preventing users from selecting inappropriate or illogical dates.
231231

232232
The following example demonstrates how to configure the `DatePicker` within the Grid using the **edit** parameters of a column. This setup dynamically restricts the selection of dates in the DatePicker’s calendar based on the data in the current row.
233233

@@ -248,7 +248,7 @@ You can customize the DateTimePicker component in Grid edit form using its prope
248248

249249
Component|Edit Type |Description |Example Customized edit params
250250
-----|-----|-----|----|
251-
[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://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.calendars.datetimepicker.html) for detailed information on available properties. | params: { value: new Date() }
251+
[DateTimePicker](../../datetimepicker/getting-started)| 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://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.calendars.datetimepicker.html) for detailed information on available properties. | params: { value: new Date() }
252252

253253
The following sample code demonstrates the customization applied to DatePicker component of **OrderDate** Grid column:
254254

0 commit comments

Comments
 (0)