Hi Kalum,
Thanks for using Syncfusion products.
We have achieved your requirement using keySettings API and load event in Grid. In Grid load event, we can change the enter key action for move to next cell instead of next line while using batch editing.
Refer to the following code example,
|
[Grid]
@(Html.EJ().Grid<OrdersView>("FlatGrid")
. . .
.AllowPaging()
.ClientSideEvents(e=>e.Load("onLoad"))
.Columns(col =>
{
. . .
}))
<script type="text/javascript">
function onLoad() {
this.model.keySettings = { moveCellRight:"13",saveRequest:" " };//change the enter key action using keySettings API
}
</script> |
Help documentation:
Please let us know if you have any further assistance on this.
Regards,
Venkatesh Ayothiraman.