RadGrid for ASP.NET

RadGrid Send comments on this topic.
UpdateEditedCommandName Field
See Also 
Telerik.WebControls Namespace > RadGrid Class : UpdateEditedCommandName Field


Represents the "UpdateEdited" command name. Updates all items that are in edit mode. This field is read-only.  

Example

The example below demonstrates how to use the UpdateEdited command within an CommandItemTemplate.

                <CommandItemTemplate>
            
                    <asp:LinkButton runat="server" ID="UpdateEdited" Text="Update Edited" CommandName="UpdateEdited">
            
                    </asp:LinkButton>
            
                </CommandItemTemplate>
            

 

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

Syntax

Visual Basic (Declaration) 
Public Shared UpdateEditedCommandName As String
Visual Basic (Usage)Copy Code
Dim value As String
 
value = RadGrid.UpdateEditedCommandName
 
RadGrid.UpdateEditedCommandName = value
C# 
public static string UpdateEditedCommandName

Example

The example below demonstrates how to use the UpdateEdited command within an CommandItemTemplate.

                <CommandItemTemplate>
            
                    <asp:LinkButton runat="server" ID="UpdateEdited" Text="Update Edited" CommandName="UpdateEdited">
            
                    </asp:LinkButton>
            
                </CommandItemTemplate>
            

Remarks

Use the UpdateCommandName field to represent the "Update" command name.

Requirements

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

See Also