New to Telerik UI for ASP.NET AJAX? Start a 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:
JavaScript
function GridCreated() {
var column1 = $find("RadGrid1").get_masterTableView().get_columns()[0];
column1.set_resizable(false);
}