Initialization Option Author API

limit

Control the number of entries on each page in the Item list view.

You would want to use this to build a custom list size for your application.

Examples

// Increase the number of Items to show to 50
var initializationOptions = {
    "config": {
        "item_list": {
            "limit": 50
        }
    }
};

Values

Request object key config.item_list.limit

Default: 10

Type number

Accepts integers between 1 and 50.

Was this article helpful?