Ticket T666596
Visible to All Users

How to refresh DataGrid to see changed rows

created 7 years ago

We are using the data grid with [remoteOperations]="true" in an angular app.

The data store was created using AspNetData.createStore method.

Once the user select any record on the grid, we show a detail page, where they can edit the record. Once the user saves the changes, we want to replace the corresponding record in the grid with the modified one. Before using remote operation, we could easily replace it on the bound data store. But now that we are using remote loading, we don't know how can we find/access the record in the store that was created using AspNetData.createStore method.

Answers approved by DevExpress Support

created 7 years ago

Hi Ariel,

The createStore method returns the CustomStore instance. You can call the CustomStore.update method to save changes and then, call the reload method of your data source. For instance:

JavaScript
gridComponent.instance.getDataSource().store().update(keyValue, {/*options*/}).then(() => { gridComponent.instance.getDataSource().reload(); })

See also:
dxDataGrid.getDataSource

    Show previous comments (9)
    DevExpress Support Team 7 years ago

      Take a look at the dxDataGrid - How to update a certain row using SignalR ticket where we discussed how to update rows without reloading.

        How should we do in win application

        Alisher (DevExpress Support) 4 years ago

          Hello,

          I created a separate ticket on your behalf: (T991673: How to refresh DataGrid to see changed rows). We placed it in our processing queue and will process it shortly.

          Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

          Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.