Your search did not match any results.

Custom New Record Position

The DevExtreme DataGrid API includes a newRowPosition property. With this property, you can specify the desired "new record" position as follows:

  • "viewportTop" (default)
    Insert a new row at the top of the viewport.

  • "viewportBottom"
    Insert a new row at the bottom of the viewport.

  • "pageTop"
    Insert a new row at the top of the current page. In virtual and infinite scrolling modes, "pageTop" works like "viewportTop".

  • "pageBottom"
    Insert a new row at the bottom of the current page. In virtual and infinite scrolling modes, "pageBottom" works like "viewportBottom".

  • "first"
    Navigate to the beginning of the dataset and insert a new row at the top.

  • "last"
    Navigate to the end of the dataset and insert a new row at the bottom. Does not apply in infinite scrolling mode.

In this demo, you can use a drop-down menu to change the newRowPosition property value at runtime. To see how your choice affects "new record" position, click the "Add a row" button in the toolbar. This demo also allows you to switch between standard and virtual scrolling modes (you can also see how newRowPosition works with each scrolling mode).

If you wish to position new records in a more flexible manner, you can specify the key before/after which a new record must be inserted. To apply this feature, set the insertBeforeKey or insertAfterKey property in the pending changes array. In this demo, each row contains an "Add row" button that inserts a new row after the current row. The insertAfterKey property is used to implement this functionality. Review the button's onClick event handler for more information.

A new record remains at a specified position until it is saved. Once saved, the DevExtreme DataGrid reloads data and sorts all records. As a result, the saved record may appear outside the viewport. To navigate to this record, call the navigateToRow(key) method from the onRowInserted event handler (as illustrated in this demo). As an alternative, you can set the refreshMode to "repaint". In this instance, the record retains its custom position after a save operation (however, position may change once data is shaped in the future).

Backend API
@(Html.DevExtreme().DataGrid() .ID("gridContainer") .DataSource(d => d.WebApi() .RouteName("DataGridWebApi") .LoadAction("Orders") .InsertAction("InsertOrder") .UpdateAction("UpdateOrder") .DeleteAction("DeleteOrder") .Key("OrderID") ) .ShowBorders(true) .ColumnAutoWidth(true) .Editing(editing => { editing.Mode(GridEditMode.Row); editing.AllowAdding(true); editing.AllowDeleting(true); editing.AllowUpdating(true); editing.ConfirmDelete(false); editing.UseIcons(true); editing.NewRowPosition(GridNewRowPosition.ViewportTop); }) .RemoteOperations(true) .Columns(columns => { columns.Add() .DataField("OrderID") .AllowEditing(false); columns.Add() .DataField("OrderDate") .DataType(GridColumnDataType.Date) .ValidationRules(v => v.AddRequired()); columns.Add().DataField("ShipName"); columns.Add().DataField("ShipCity"); columns.Add().DataField("ShipPostalCode"); columns.Add().DataField("ShipCountry"); columns.Add() .Type(GridCommandColumnType.Buttons) .Buttons(b => { b.Add() .Icon("add") .OnClick("addButtonClicked") .Visible(new JS("addButtonVisible")); b.Add().Name("delete"); b.Add().Name("save"); b.Add().Name("cancel"); }); }) .Toolbar(toolbar => { toolbar.Items(i => { i.Add() .Name(DataGridToolbarItem.AddRowButton) .ShowText(ToolbarItemShowTextMode.Always); }); }) .OnRowInserted("onRowInserted") ) <div class="options"> <div class="caption">Options</div> <div class="option-container"> <div class="option"> <span>New Row Position</span> @(Html.DevExtreme().SelectBox() .ID("newRowPositionSelectBox") .InputAttr("aria-label", "Position") .Value("viewportTop") .Items(new[] { "first", "last", "pageTop", "pageBottom", "viewportTop", "viewportBottom" }) .OnValueChanged("newRowPositionChanged") ) </div> <div class="option"> <span>Scrolling Mode</span> @(Html.DevExtreme().SelectBox() .ID("scrollingModeSelectBox") .Value("standard") .InputAttr("aria-label", "Scrolling Mode") .Items(new[] { "standard", "virtual" }) .OnValueChanged("scrollingModeChanged") ) </div> </div> </div> <script> function addButtonClicked(e) { var dataGrid = e.component; var key = new DevExpress.data.Guid().toString(); dataGrid.option('editing.changes', [{ key, type: 'insert', insertAfterKey: e.row.key, }]); dataGrid.option('editing.editRowKey', key); } function addButtonVisible(e) { return !e.row.isEditing; } function newRowPositionChanged(e) { var dataGrid = $("#gridContainer").dxDataGrid("instance"); dataGrid.option('editing.newRowPosition', e.value); } function scrollingModeChanged(e) { var dataGrid = $("#gridContainer").dxDataGrid("instance"); dataGrid.option('scrolling.mode', e.value); } function onRowInserted(e) { e.component.navigateToRow(e.key); } </script>
using DevExtreme.MVC.Demos.Models; using DevExtreme.MVC.Demos.Models.DataGrid; using DevExtreme.MVC.Demos.Models.SampleData; using System; using System.Linq; using System.Web.Mvc; namespace DevExtreme.MVC.Demos.Controllers { public class DataGridController : Controller { public ActionResult CustomNewRecordPosition() { return View(); } } }
#gridContainer { height: 440px; } .options { margin-top: 20px; padding: 20px; background-color: rgba(191, 191, 191, 0.15); position: relative; } .caption { font-size: 18px; font-weight: 500; } .option-container { display: flex; margin: 0 auto; justify-content: space-between; } .option { margin-top: 10px; display: flex; align-items: center; } .option-caption { white-space: nowrap; margin: 0 8px; } .option > span { position: relative; margin-right: 10px; } #newRowPositionSelectBox { width: 150px; } #scrollingModeSelectBox { width: 150px; }