Put multiple lines at in one line. dhtmlxgrid

Hi.

I want to put multiple lines in one line of DHTMX Grid.
And make it Editable all data.

Is there a way?

I want to put multiple lines in one line of DHTMX Grid.

this is the deafaut behavior i nthe dhtmlxGrid. Just make sure that you’ve not enabled the multiLine mode:
https://docs.dhtmlx.com/api__dhtmlxgrid_enablemultiline.html

And make it Editable all data.

Plase, try to use some editable column type. Like “ed”:
https://docs.dhtmlx.com/grid__columns_types.html

Thanks sematik.
It looks like my question was bad .

ex.
Col1 Col2 Col3
Data-A Data-B1 Data-C
Data-B2

May be Col1 and Col3 Used “Span”.
But, not Editable.

I want to All Data(Data-A, Data-B1(2) and Data-C) Editable.

You are able to use the colspans or rowspans in your grid:
https://docs.dhtmlx.com/grid__basic_operations.html#merging
https://dhtmlx.com/docs/products/dhtmlxGrid/samples/16_rows_columns_manipulations/21_pro_rowspan.html
https://dhtmlx.com/docs/products/dhtmlxGrid/samples/16_rows_columns_manipulations/05_pro_colspan.html
and these spanned cells can be editable.

1 Like