I have an ultraweb grid . I have binded my grid to a datasource with auto generate columns property set to true.
In the initialize layout handler client side im able to set some columns hidden and header text to the columns.
But when im trying to make a column noneditable and fixed , both do not work .
i've used
oGrid.Bands[0].getColumnFromKey("FEATURE_NAME").setAllowUpdate(2);
oGrid.Bands[0].getColumnFromKey("FEATURE_NAME").setFixed(true);
can anyone help me with asolution.