Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
235
How to make a column non editable in initialize layout handler client side
posted

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.