Leopard Chat Client
  • Quick Start
  • Screenshots
  • Setup
    • Extension Helper
    • Context Variables
      • Greeting Message
      • Channel
      • User's Time Zone
      • Location Context Parameters
    • Build Variables
  • Content Styling
    • CSS Styles
    • Icons
    • Markdown & HTML
  • Components Simple Syntax
  • Components
    • Answer Borders
    • Audio Player
    • Auto Open Leopard with Link
    • Alerts
    • Buttons and Lists
    • Card
    • Response Icons
    • Date & Time Pickers
    • Emergency Button
    • Expensive Operations
    • Field Masks
    • Chat Field Types (Email, Password, Location, Upload)
    • Forms
      • Feedback Form
      • Custom Forms
        • Example Config
        • Postback Object
        • Button Object
        • Field Types
        • Style Object
        • Icons Object
        • Masks
        • Validation
    • Google Map
    • Help Text
    • HTML Modal
    • Hyperlinks
    • Images
      • Image
      • Image Carousel
    • Tables
      • Tables - Simple
      • Tables - Advanced
    • Theme Change
    • Toasts
    • Language Auto Switch
    • Minimize Chat after Delay
    • Multiple Components - Same Response
    • Modal Size & Positioning
    • Open Long Response in Modal
    • Print Icon
    • Prompt Trigger Polling
    • Splitting Answers - Chunks
    • Video Player
  • Administration Area
    • Solution Configuration
    • Demo Mode - iFrames & URLs
    • ASR and TTS
  • Integrations
    • Logging / Reporting
    • Social Authentication
    • Live Chat
  • Embedding / Production
Powered by GitBook
On this page
  • Screenshot
  • JSON
  1. Components
  2. Tables

Tables - Simple

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

PreviousTablesNextTables - Advanced

Last updated 4 years ago

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"]]
}