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);
}