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: angularjs/Grid/Editing.md
+33-33Lines changed: 33 additions & 33 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
---
2
2
Layout: Post
3
-
Title: Editing with Grid widget for the Syncfusion Essential AngularJS
4
-
Description: How to perform editing and configure edit time functionalities like edit type, edit time controls, etc
5
-
Platform: AngularJS
6
-
Control: Grid
7
-
Documentation: UG
3
+
title: Editing with Grid widget for the Syncfusion Essential AngularJS
4
+
description: How to perform editing and configure edit time functionalities like edit type, edit time controls, etc
5
+
platform: AngularJS
6
+
control: Grid
7
+
documentation: UG
8
8
---
9
-
# Editing
9
+
# Editing in AngularJS Grid
10
10
11
11
The grid control supports dynamic insertion, updation, and deletion of records. You can start the edit action either by double clicking the particular row or by selecting the required row and clicking the edit icon in toolbar. Similarly, you can add new record to grid either by clicking the insert icon in toolbar or external button which is bound to call method [`addRecord`](http://help.syncfusion.com/api/js/ejgrid#methods:addrecord "addRecord") of grid. `Save` and `Cancel` on edit mode can be possible using respective toolbar icon in grid.
12
12
@@ -50,7 +50,7 @@ The following code example describes the previous behavior.
50
50
51
51
The following output is displayed as a result of previous code example:
52
52
53
-

53
+

54
54
55
55
56
56
## Cell edit type and its params
@@ -141,7 +141,7 @@ The following code example describes the previous behavior.
141
141
142
142
The following output is displayed as a result of previous code example:
To show delete confirm dialog while deleting a record, set the [`showDeleteConfirmDialog`](http://help.syncfusion.com/api/js/ejgrid#members:editsettings-showdeleteconfirmdialog "showDeleteConfirmDialog") to true.
@@ -733,7 +733,7 @@ The following code example describes the previous behavior.
733
733
734
734
The following output is displayed as a result of previous code example:
@@ -853,7 +853,7 @@ The following code example describes the previous behavior.
853
853
854
854
The following output is displayed as a result of previous code example:
855
855
856
-

856
+

857
857
858
858
859
859
## Persisting data in Server
@@ -934,7 +934,7 @@ public class DataResult
934
934
The grid actions (sorting, filtering, paging, searching, and aggregates) details are obtained in the 'DataManager' class. While initializing the grid, paging only enabled. The following screenshot shows paging details that are bound to the DataManager class.
Using the 'DataOperations' helper class, you can perform grid action at server side. The in-built methods that we have provided in the DataOperations class are listed as follows:
@@ -1076,7 +1076,7 @@ public ActionResult Insert(EditableOrder value)
1076
1076
The newly added record details are bound to the 'value' parameter. Please refer to the following image:
0 commit comments