Initialization Option Author API

limit

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

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

Examples

// Increase the default amount of Activities shown
var initializationOptions = {
    "config": {
        "activity_list": {
            "limit": 50
        }
    }
};

Values

Request object key config.activity_list.limit

Default: 25

Type number

Values can be integers between 1 and 50.

Was this article helpful?