Intersoft WebGrid Documentation
OnBatchUpdate Method
See Also  Send Feedback
ISNet.WebUI.WebGrid Namespace > WebGrid Class : OnBatchUpdate Method






pendingChanges
Provides BatchUpdateEventArgs as the event argument. This event will always be invoked when batch update feature is enabled. This event is required to be handled for traditional and custom object binding. You can cancel WebGrid for further processing by setting false to its ReturnValue. 

Syntax

Visual Basic (Declaration) 
Public Overridable Function OnBatchUpdate( _
   ByVal pendingChanges As List(Of WebGridRowChanges) _
) As Boolean
Visual Basic (Usage)Copy Code
Dim instance As WebGrid
Dim pendingChanges As List(Of WebGridRowChanges)
Dim value As Boolean
 
value = instance.OnBatchUpdate(pendingChanges)
C# 
public virtual bool OnBatchUpdate( 
   List<WebGridRowChanges> pendingChanges
)
Delphi 
public function OnBatchUpdate( 
    pendingChanges: List
): Boolean; virtual; 
JScript 
public function OnBatchUpdate( 
   pendingChanges : List
) : boolean;
Managed Extensions for C++ 
public: virtual bool OnBatchUpdate( 
   List<WebGridRowChanges*>* pendingChanges
) 
C++/CLI 
public:
virtual bool OnBatchUpdate( 
   List<WebGridRowChanges^>^ pendingChanges
) 

Parameters

pendingChanges

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

©2012 Intersoft Solutions Corp. All Rights Reserved.