Hi Dongil,
Thanks for your interest in Syncfusion products.
Query :- I want all rows in edit mode already, make changes and then do a bulk Save.
We have analyzed your query and you are expected like Excel type of Editing in Grid. For this purpose Syncfusion has the support of editing known as “Batch editing”. In Batch Editing, it make all of the cells to be in editable state when we click on the cell. To enable Batch editing, you need to set “EditMode” as “Batch”. Like Excel editing , you can navigate over the cell by using keyboard navigation(using Tab key) without clicking the edit button always.
Please refer to the code example and Help document link:-
@(Html.EJ().Grid<Object>("FlatGrid")
.Datasource((IEnumerable<object>)ViewBag.DataSource)
.AllowPaging()
.EditSettings(edit => { edit.AllowAdding().AllowDeleting().AllowEditing().EditMode(EditMode.Batch); })
.Columns(col =>
{
col.Field("OrderID").HeaderText("Order ID").IsPrimaryKey(true).TextAlign(TextAlign.Right).Add();
. . .
})) |
If you want to perform Server side CRUD operations in Batch editMode, you can use the property “BatchURL”. Please refer to the Help document and Online Demo Link:-
Please get back to us if you need any further assistance.
Regards,
Farveen sulthana T