adds a new view to a carousel or moves an existing one
| view |
| string|number | the id of the view |
webix.ui({
id:"mycarousel",
cols:[...]
});
// adds template as a third cell to some existing carousel
$$("mycarousel").addView({ template:"New one" }, 2);
// moves an existing child view to a different index
$$("mycarousel").addView($$("child"), 3);
Passing an index as a second parameter will have full effect for layout rows and cols, accordion and carousel panels, toolbar and form controls. Some other widgets (e.g. multiview or containers with absolute positioning for child views) won't display changes in view order. Still, the real order (returned by getChildViews()) will always change accordingly.