New to Telerik UI for ASP.NET AJAXStart a 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 byRadGrid
ArgumentsgridColumn - returns a reference to the clicked GridColumn object domEvent - returns the DOM event that was raised for the current event
Can be canceledNo

Example:

ASP.NET
<telerik:RadGrid RenderMode="Lightweight" ID="RadGrid1" runat="server">
    <ClientSettings AllowColumnsReorder="true" ReorderColumnsOnClient="true" ColumnsReorderMethod="Reorder">
        <ClientEvents OnColumnMovedToRight="ColumnMovedToRight" />
    </ClientSettings>
</telerik:RadGrid>
JavaScript
function ColumnMovedToRight(sender, eventArgs) {
    alert("Column with index: " + eventArgs.get_gridColumn().get_element().cellIndex + " was moved to right");
}
Not finding the help you need?
Contact Support