Form in a tabbabr in a layout

The East he(it) possible to attach a component ’ form ’ in a component ’ tabbar ’ he even attached in a component ’ layout '?
thank you

original text :
Est il possible d’attacher un composant ‘form’ dans un composant ‘tabbar’ lui meme attaché dans un composant ‘layout’ ?
merci

Bonjour
You can attach it via tabbar’s method attachForm, look at the sample:
Vous pouvez joindre le, l’aide une méthode du tabbar attachForm(), regarde un exemple

dhtmlx.com/docs/products/dhtmlxT … nside.html

I believe that you did not understand my question…

I know that it is very simple to integrate(join) an object ’ form ’ into an object ’ tabbar ', with the method ’ attachform ’

The ’ tabbar ’ in which I want inégrer my ’ form ’ is even integrated(joined) into him(her) in a ’ layout ’ and that’s what does not work, the ’ form ’ does not appear…

Thank you for your help.

original french message :
je crois que vous n’avez pas compris ma question …
je sais qu’il est très simple d’intégrer un objet ‘form’ dans un objet ‘tabbar’ , avec la méthode ‘attachform’
Le ‘tabbar’ dans lequel je veux inégrer mon ‘form’ est lui même intégré dans un ‘layout’ et c’est cela qui ne fonctionne pas, le ‘form’ n’apparait pas …

merci de votre aide.

So, may be you need something like this:

formdata = [{ type: "input" , name: "inpA", label: "Name:", width: "150", labelWidth: "150", id:"name", labelHeight: "14", inputWidth: "150", inputHeight: "18", value: "primary text" }]; dhxLayout = new dhtmlXLayoutObject("parentId", "2U"); tabbar = dhxLayout.cells("a").attachTabbar(); tabbar.addTab("info","info","180px"); tabbar.addTab("project","project","180px"); tabbar.tabs("info").setActive(); tabbar.tabs("info").attachForm(formdata);

It works…
One thank you !

You are welcome!