Tables - Simple

Provides a structure for displaying simple inline tables. Useful when you want to summarize the entities captured via conversation.

Simple Tables are only available as an inline component.

Screenshot

JSON

No Extension Helper method provided but it's simple to pass back the configuration to Leopard. You will need to define an extensions output parameter with the following JSON structure.

If you want to omit the headers then remove the property.

{
    "name": "displaySimpleTable",
    "inline": true,
    "dense": true,
    "height": null,
    "fixedHeader": false,
    "headers": ["Account", "Balance"],
    "rows": [["<b>Current</b>", "$1271.21"], ["Private", "$137.54"]]
}

Last updated