how can i attach the uploader to a container ?

i have this code , but i cant make it to work inside a container

  webix.ui({
  view:"form", rows: [
    {
      view: "uploader", value: "Upload file",
      id:"uploader_1",
      container: "container_uploader",
      name:"files",
      link:"mylist",  upload:"https://docs.webix.com/samples/server/upload",
    },
    {
      view:"list",  id:"mylist", type:"uploader",
      autoheight:true, borderless:true
    },
    { view: "button", label: "Get value", click: function() {
      var text = this.getParentView().getValues();
      text = JSON.stringify(text, "\
");
      webix.message("
```
"+text+"
```
");
    }}
  ]
});

Hello @Lalo,
In your example, you are trying to put a nested element (uploader) from component form to container.
It’s impossible because only the whole UI structure (initialized as a single webix.ui) can be put in a container:
https://snippet.webix.com/sh7l039s
If you need to take uploader out of the form, you need to initialize the form and the uploader in the different containers:
https://snippet.webix.com/85b2um8b

thanks