attachObject in container form?

You can put div inside container?

example:
form. getContainer(container).attachObject(‘div’);

value

Falou.

We integrated the Layout:

var layout = new dhtmlXLayoutObject(form.getContainer(container), "1C");
layout.cells("a").attachObject("div");

but I want to remove the border of the layout.
how can I do this?

hi

attachObject is native dhtmlx method for layout
in case of browser’s functionality, you need:
var t = document.createElement(“DIV”);
myForm.getContainer(name).appendChild(t);