Check documentation for the latest version of dhtmlxSuite setActive DHTMLX Docs

setActive

selects the specified cell

void setActive();

Example

myCarousel = new dhtmlXCarousel("carouselObj");
 
var id = myCarousel.addCell();
 
// select a cell
myCarousel.cells(id).setActive();

Back to top