Template Border

http://webix.com/snippet/2699d3ef

Can you explain why when template has container property, borders exist ?

Thanks

It is expected behavior, Webix UI elements do not render a border when they are attached directly to document.body.

Just set borderless property to enforce the state of border

http://webix.com/snippet/f17965c0

So. Webix ui elements draw borders differently too when attached to layout with type property.
attached to a div or to (rows, cols) is different.

I have some difficulties to understand why.

I love so much Webix :slight_smile:

The logic is the next

  • when a component is attached to document.body it will not render a border around the container ( as it has no sense to render an extra border for the whole document )
  • when a component is attached to the HTML container it will render a border around the container

When component is placed inside of layout, its borders depends on layout type.

Can you set this information in Manual ? :slight_smile:
May be you are interested to have a manual’s french

Ok i now understand very well. I think it’s not well explained in manual, or it’s me :-).
It’s an important thing to understand.