I have a Gird like this
<ej:Grid ID="IOTList" runat="server" AllowPaging="false" AllowResizeToFit="true" AllowFiltering ="true">
<FilterSettings FilterType="Excel" />
<EditSettings AllowEditing="True" EditMode="Batch" ShowConfirmDialog="true"></EditSettings>
<ToolbarSettings ShowToolbar="True" ToolbarItems="edit,update,cancel"></ToolbarSettings>
</ej:Grid>
and EditMode I set Batch
When User edit this Grid
I want to get this Grid all Data in C#
Now,I hope to get Grid Data like visual studio GridView -> GridView.Rows[i].Cells[j].Text
How can I do