scroll()
Description
Scrolls Kanban to the specified element
Usage
scroll({
id: string | number,
to: "column" | "row" | "card",
options?: object
}): void;
Parameters
id
- (required) the ID of the target elementto
- (required) the type of the target element. The available values are "column", "row" and "card"options
- (optional) the object of scrolling options. The full list of the scrolling parameters can be found here
Example
// create Kanban
const board = new kanban.Kanban("#root", {
columns,
cards
});
// scroll Kanban to the card with the 246 ID
board.scroll({
id: 246,
to: "card",
options: {
behavior: "smooth",
block: "end",
inline: "nearest"
}
});
Change log: The method was added in v1.2