scrollTo

прокручивает карусель и контейнер scrollview до определенной позиции

void scrollTo(number x,number y);
xnumberположение прокрутки по горизонтали
ynumberположение прокрутки по вертикали

Example

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);

See also
  • Articles
  • Наверх
    If you have not checked yet, be sure to visit site of our main product Webix mvc library and page of carousel slider product.