GridSerializer.ApplyPostViewIncrementalInsertsAndDeletes Method (IEnumerable<Change>)
Applies relevant record insert and delete changes to the input data table before slicing occurs.
Namespace: Microsoft.SharePoint.JSGrid
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Sub ApplyPostViewIncrementalInsertsAndDeletes ( _
changes As IEnumerable(Of Change) _
)
'Usage
Dim instance As GridSerializer
Dim changes As IEnumerable(Of Change)
instance.ApplyPostViewIncrementalInsertsAndDeletes(changes)
public void ApplyPostViewIncrementalInsertsAndDeletes(
IEnumerable<Change> changes
)
Parameters
changes
Type: System.Collections.Generic.IEnumerable<Change>An ordered set of record insert and delete changes that have occurred on the client since the last row view or table view change.
Remarks
This method is needed because the indices used to represent the slice come from the client and are therefore affected by record inserts and deletes that have occurred on the client. To keep the record indices on the server synchronized with those on the client, all record inserts and deletes that have occurred after the last row view or table view change must be sent to the server and applied.