DevExtreme v23.2 is now available.

Explore our newest features/capabilities and share your thoughts with us.

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
$(() => { const newRowPositionOptions = ['first', 'last', 'pageTop', 'pageBottom', 'viewportTop', 'viewportBottom']; const scrollingModeOptions = ['standard', 'virtual']; const dataGrid = $('#gridContainer').dxDataGrid({ dataSource, showBorders: true, columnAutoWidth: true, editing: { mode: 'row', allowAdding: true, allowDeleting: true, allowUpdating: true, confirmDelete: false, useIcons: true, newRowPosition: 'viewportTop', }, remoteOperations: true, columns: [ { dataField: 'OrderID', allowEditing: false, }, { dataField: 'OrderDate', dataType: 'date', validationRules: [{ type: 'required' }], }, 'ShipName', 'ShipCity', 'ShipPostalCode', 'ShipCountry', { type: 'buttons', buttons: [{ icon: 'add', onClick(e) { const key = new DevExpress.data.Guid().toString(); dataGrid.option('editing.changes', [{ key, type: 'insert', insertAfterKey: e.row.key, }]); dataGrid.option('editing.editRowKey', key); }, visible({ row }) { return !row.isEditing; }, }, 'delete', 'save', 'cancel'], }], toolbar: { items: [{ name: 'addRowButton', showText: 'always', }], }, onRowInserted(e) { e.component.navigateToRow(e.key); }, }).dxDataGrid('instance'); $('#newRowPositionSelectBox').dxSelectBox({ value: 'viewportTop', items: newRowPositionOptions, inputAttr: { 'aria-label': 'Position' }, onValueChanged(e) { dataGrid.option('editing.newRowPosition', e.value); }, }).dxSelectBox('instance'); $('#scrollingModeSelectBox').dxSelectBox({ value: 'standard', items: scrollingModeOptions, inputAttr: { 'aria-label': 'Scrolling Mode' }, onValueChanged(e) { dataGrid.option('scrolling.mode', e.value); }, }).dxSelectBox('instance'); });
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>DevExtreme Demo</title> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script> <link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/23.2.5/css/dx.light.css" /> <link rel="stylesheet" type="text/css" href="styles.css" /> <script src="js/dx.all.js"></script> <script src="https://unpkg.com/devextreme-aspnet-data@3.0.0/js/dx.aspnet.data.js"></script> <script src="data.js"></script> <script src="index.js"></script> </head> <body class="dx-viewport"> <div class="demo-container"> <div id="gridContainer"></div> <div class="options"> <div class="caption">Options</div> <div class="option-container"> <div class="option"> <span>New Row Position</span> <div id="newRowPositionSelectBox"></div> </div> <div class="option"> <span>Scrolling Mode</span> <div id="scrollingModeSelectBox"></div> </div> </div> </div> </div> </body> </html>
#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; }
const url = 'https://js.devexpress.com/Demos/Mvc/api/DataGridWebApi'; const dataSource = DevExpress.data.AspNet.createStore({ key: 'OrderID', loadUrl: `${url}/Orders`, insertUrl: `${url}/InsertOrder`, updateUrl: `${url}/UpdateOrder`, deleteUrl: `${url}/DeleteOrder`, onBeforeSend: (method, ajaxOptions) => { ajaxOptions.xhrFields = { withCredentials: true }; }, });