Categories | Question details Back To List | ||
Automatically increase the row width in dhtmlx grid box I have a dhtmlx grid boz having a particular column "a_col" that can have data that is larger to fit in the given row span.As a result the width of the column is increased keeping row width same.I want a function that can reverse this i.e the column width should be kept constant and the extra data should come in an extended space beneath. I have used sub_row and that is not what is required of the GUI.also the enableAutoWidth on grid is making the scrollbar for the entire grid disappear. Answer posted by dhxSupport on Dec 17, 2009 01:59 You can use multi line mode: mygrid.enableMultiline(true); Answer posted by Rics on Dec 17, 2009 02:33 I tried its still not working.Anything else thaty can be possible?Some permutations of grid box functions maybe? Answer posted by Alex (support) on Dec 17, 2009 09:39 Please, check the sample dhtmlxGrid/samples/16_rows_columns_manipulations/03_grid_multiline_col.html ( http://dhtmlx.com/docs/products/dhtmlxGrid/samples/16_rows_columns_manipulations/03_grid_multiline_col.html ) It seems that mulitline is exactly what you are looking for. |