New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

OnColumnMovedToRight

Sys.EventArgs OnColumnMovedToRight Property

To get or set property values for client API properties, you must call property accessor methods that are named with the get_ and set_ prefixes. For example, to get or set a value for a property such as cancel, you call the get_cancel or set_cancel.

This event is fired after a column is moved right.

Fired by RadGrid
Arguments gridColumn - returns a reference to the clicked GridColumn object domEvent - returns the DOM event that was raised for the current event
Can be canceled No

Example:

<telerik:RadGrid RenderMode="Lightweight" ID="RadGrid1" runat="server">
    <ClientSettings AllowColumnsReorder="true" ReorderColumnsOnClient="true" ColumnsReorderMethod="Reorder">
        <ClientEvents OnColumnMovedToRight="ColumnMovedToRight" />
    </ClientSettings>
</telerik:RadGrid>
function ColumnMovedToRight(sender, eventArgs) {
    alert("Column with index: " + eventArgs.get_gridColumn().get_element().cellIndex + " was moved to right");
}
In this article