property sheet: nameWidth zero - no label

i want to have a property sheet without labels, so i tried nameWidth = 0 or nameWidth = 1 , but the rendering is not as expeced then.
you have a simple solution for me to fix that?

(what i try to do is: placing two or three property sheets aside, to compare value sets with identical labels in a row, without have labels two to three times)

For nameWidth:1 there’s a solution through CSS:

.webix_property_label{  
    padding-left: 0px;  
}

http://webix.com/snippet/aea3d614

Thx.
Found out in the meantime to get it run using like this

{ view: “property”, css: “no_label” }

and in the css:

.no_label div.webix_property_label {
display: none;
}

http://webix.com/snippet/68a563b9

:slight_smile:
http://webix.com/snippet/52f11f90