Skip to main content
A newer version of this page is available. .

CardRow Class

A row in the CardItem‘s layout.

Declaration

export class CardRow extends CardRowBase

Remarks

Use the CardLayout.rows property to access rows that constitute a card’s layout. Refer to the CardLayoutTemplate class description to learn how to manage the layout of cards in the CardItem.

Inherited Members

Inheritance

constructor

Initializes a new instance of the CardRow class.

Declaration

constructor(
    modelJson?: any,
    serializer?: ModelSerializer
)

Parameters

Name Type Description
modelJson any

A JSON object used for dashboard deserialization. Do not pass this parameter directly.

serializer ModelSerializer

An object used for dashboard deserialization. Do not pass this parameter directly.

Properties

elementItemTypes Property

Declaration

static elementItemTypes: {
    'CardRowDataElement': {
        constructor: typeof CardRowDataElement;
    };
    'CardRowIndicatorElement': {
        constructor: typeof CardRowIndicatorElement;
    };
    'CardRowTextElement': {
        constructor: typeof CardRowTextElement;
    };
}

Property Value

Name Type
CardRowDataElement {constructor: typeof CardRowDataElement}
CardRowIndicatorElement {constructor: typeof CardRowIndicatorElement}
CardRowTextElement {constructor: typeof CardRowTextElement}

elements Property

Provides access to a collection of CardRowElement objects that are a card’s visual elements.

Declaration

elements: ko.ObservableArray<CardRowElement>

Property Value

Type Description
ObservableArray<CardRowElement>

An array of CardRowElement objects that are the card’s visual elements.

Methods

createRowElement(elementJSON, serializer) Method

Declaration

createRowElement(
    elementJSON: any,
    serializer: ModelSerializer
): CardRowDataElement

Parameters

Name Type
elementJSON any
serializer ModelSerializer

Returns

Type
CardRowDataElement

getInfo Method

For internal use.

Declaration

getInfo(): ISerializationInfoArray

Returns

Type Description
ISerializationInfoArray

An array of objects that provide serialization info.