list entries with variable height

is it possible for the entries in a view: list to have varying heights?

I use a template for the display contents, and some data has optional fields that go on a second line. Those entries need to have a greater height. Right now I can make all entries higher, but it would be nice to control it entry by entry.

Thanks.

Yes, it is possible you can define “auto” height in type property:

dhx.ui({ view:"list", type:{ height: "auto" }, ... });

That worked perfectly. Thank you.