Strange datatable-subview behaviour: text is truncated

Hi

I have observed that text truncates when using a datatable:
http://webix.com/snippet/29438e93

It does not happens if we just remove subview:
http://webix.com/snippet/ee05a2a9

Why is happening this? Is there any way to fix it?

Thanks in advance!

The subview has a different height from rows, but it is still a part of the grid. Thus, a style for the variable row height takes part. This style includes white-space:normal that moves the text to the next line.

For your use-case, it’s a wrong behavior and we will fix it. But for now, you can simply redefine this property to:

.webix_cell {
    white-space: nowrap !important;
}

Thanks al lot, it works!