RadGrid for ASP.NET

RadGrid Send comments on this topic.
IGridColumnEditor Interface
See Also  Members  
Telerik.WebControls Namespace : IGridColumnEditor Interface


Interface that describes the baseic column editor functionality, needed for a class that should be responsible for editing of a content of a cell in a GridEditableItem 
Namespace: Telerik.WebControls
Assembly: RadGrid (in RadGrid.dll)

Syntax

Visual Basic (Declaration) 
Public Interface IGridColumnEditor 
Visual Basic (Usage)Copy Code
Dim instance As IGridColumnEditor
C# 
public interface IGridColumnEditor 

Remarks

Implement column editor to provide extended editing functionality in RadGrid. The column-editor inheritors should provide the methods for creating the column editor control inside the container (generally a grid TableCell). For example the default column editor for GridBoundColumn creates a TextBox control and adds it to the corresponding GridtableCell when the InstantiateInControl method is called. To inherit the base implementation of a column editor control in RadGrid you may consider deriving from GridColumnEditorBase instead implementing the IColumnEditor interface.

Requirements

Namespace: Telerik.WebControls

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

Assembly: RadGrid (in RadGrid.dll)

See Also