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

set_resizable()

The method takes a single Boolean argument, specifying whether or not the column instance should be resizable or not.

Example:

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