File

projects/netgrif-components-core/src/lib/task-content/model/async-rendering-configuration.ts

Index

Properties

Properties

batchDelay
batchDelay: number
Type : number
Optional

What is the delay between renders in milliseconds

batchSize
batchSize: number
Type : number
Optional

How many items are rendered at once

enableAsyncRenderingForNewFields
enableAsyncRenderingForNewFields: boolean
Type : boolean
Optional

Whether data fields that are not yet present in the task content should be rendered asynchronously or not

enableAsyncRenderingOnTaskExpand
enableAsyncRenderingOnTaskExpand: boolean
Type : boolean
Optional

Whether all data fields that are already loaded, when a task is expanded should be rendered asynchronously or not

numberOfPlaceholders
numberOfPlaceholders: number
Type : number
Optional

How many placeholder elements are rendered after the items

export interface AsyncRenderingConfiguration {
    /**
     * How many items are rendered at once
     */
    batchSize?: number;
    /**
     * What is the delay between renders in milliseconds
     */
    batchDelay?: number;
    /**
     * How many placeholder elements are rendered after the items
     */
    numberOfPlaceholders?: number;
    /**
     * Whether data fields that are not yet present in the task content should be rendered asynchronously or not
     */
    enableAsyncRenderingForNewFields?: boolean;
    /**
     * Whether all data fields that are already loaded, when a task is expanded should be rendered asynchronously or not
     */
    enableAsyncRenderingOnTaskExpand?: boolean;
}

result-matching ""

    No results matching ""