carousel

How to display multiple items in a single view of carousel ??

Hello,

You can wrap the items into ui.layout. And just include the layout to the carousel.
Also, carousel supports any content inside of it. For example, you can also use template, dataview and so on.

webix.ui({
    view:"carousel",
    id:"carousel",
    cols:[
        { view:"template" },
        { view:"chart" },
        { view:"datatable" },
        { rows:[...]} //layout
    ]
});

Hi, Thanks for your comment.
Actually I am looking to show group of images in a single view of carousel. while navigating it needs to add one new image at the end of the group and will remove the one at the start.

I am having the list of images in my dataview.

refer the above url for sample

Hello,
Please check Code Snippet

Thanks a lot