RadGrid for ASP.NET

RadGrid Send comments on this topic.
EditItems Property
See Also 
Telerik.WebControls Namespace > RadGrid Class : EditItems Property


Gets a collection of all GridItems in edit mode. See the Remarks for more info.   

 

Namespace: Telerik.WebControls
Assembly: RadGrid (in RadGrid.dll)

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property EditItems As GridItemCollection
Visual Basic (Usage)Copy Code
Dim instance As RadGrid
Dim value As GridItemCollection
 
value = instance.EditItems
C# 
public GridItemCollection EditItems {get;}

Return Value

GridItemCollection of all items that are in edit mode.

Remarks

The EditItems collection contains InPlace edit mode items. When you switch the edit type to EditForms, the EditItems collection holds the currently edited items but not their EditFormItems (which in this case hold the new values). See this help article for more details.

You should not use this property to check whether there are items in edit mode. The better approach is to use EditIndexes property instead.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

See Also