scrolls the carousel and scrollview container to a certain position
x | number | the value of the horizontal scroll |
y | number | the value of the vertical scroll |
webix.ui({
view:"carousel",
container:"box",
id:"carousel1",
cols:[
{ id:"cell1", template:"<img src='spring.jpg'/>" },
{ id:"cell2", template:"<img src='summer.jpg'/>" }
]
});
$$('carousel1').scrollTo(100,0);