Skip to main content

getCards()

Description

Gets a promise with the cards data

info

The getCards() method is a part of the RestDataProvider service intended for working with server

Usage

getCards(): promise;

Returns

The getCards() method sends a request to the server by the GET method and returns a promise with the cards data

Example

const url = "https://some_backend_url";
const restProvider = new kanban.RestDataProvider(url);

Promise.all([
restProvider.getCards(),
restProvider.getColumns()
]).then(([cards, columns]) => {
const board = new kanban.Kanban("#root", {
cards,
columns
});
board.api.setNext(restProvider);
});

Related articles: Working with server