Images in Carousel

How do you load images into the Carousel component?

You can use “template” view to put an image into carousel columns:

webix.ui(
    view: "carousel", 
     cols:[
          {template:"<img src='imgs/image1.gif'>"},
          {template:"<img src='imgs/image2.gif'>"}, 
          {template:"<img src='imgs/image3.gif'>"}
     ]
);

Thanks!!!