Author Topic: remote data model, delete row and don't refersh grid.  (Read 1152 times)

juroinstruments

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 14
    • View Profile
remote data model, delete row and don't refersh grid.
« on: September 06, 2021, 11:17:19 am »
I want to know how to delete rows from grid.

The data model is using the remote model.

If the following command is executed, the row is deleted and reloaded at the same time.

ex)
grid.deleteRow({ rowIndx: 4 } );

Using the remote data model, grid.deleteRow is performed to delete the grid view, and when grid.getChanges() is called, how can the row be retrieved from the deleteList?

juroinstruments

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 14
    • View Profile
Re: remote data model, delete row and don't refersh grid.
« Reply #1 on: September 06, 2021, 01:02:02 pm »
It's my fault. It's an infinite loading problem.