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

set_reorderable()

This methods takes a singe Boolean argument, specifying whether the column should be reorderable or not.

Example:

function GridCreated() {
    var column1 = $find("RadGrid1").get_masterTableView().get_columns()[0];
    column1.set_reorderable(false);
}
In this article