LogoLogo
Home
Core Platform
Core Platform
  • Introduction
    • Overview
    • Use Cases
    • Architecture
    • Built with ML & AI
    • Quick Start
  • Examples
    • Training Examples
      • API Flow Examples
      • Microservice Examples
      • UI Example
      • Exercise: Hello World API
      • Exercise: Test State
      • Exercise: Test UI
    • Exercise: To-do List
      • To-do List Runner
      • To-do List Gateway
      • To-do List UI
      • To-do List Query
  • Troubleshooting
    • Rierino Packages
    • Release Notes
    • Useful Checks
    • Error Codes
  • Devops
    • Overview
    • API Flows
      • Using the Saga Screen
      • Defining a Saga
      • Configuring Saga Steps
        • Event Step
        • Transform Step
          • Transform Classes
        • Condition Step
          • Condition Classes
        • Step Link
      • Injecting Variables
    • Microservices
      • Runners
        • Using the Runner Screen
        • Defining a Runner
        • Managing Runner Settings
        • Adding Runner Elements
        • Deploying Runners
          • Spring Runners
          • Samza Runners
          • Camel Runners
      • Elements
        • Systems
        • State Managers
          • Typical Use Cases
          • State Data Structure
          • Local States
            • In-Memory Map
            • Caffeine Cache
            • Samza Based
            • Lucene Based
            • Single File
            • Multiple Files
            • Selected IDs Map
            • Indexed Map
          • Shared States
            • MongoDB Collection
            • Jooq (SQL) Table
            • Redis Map
            • Couchbase Collection
            • Elasticsearch Index
            • Elasticsearch Joined
            • Etcd Namespace
          • Specialized States
            • CRUD Service
            • Odata Service
          • State Coordinators
            • Lazy Cache Coordinator
            • Event Store Coordinator
            • Write thru Coordinator
          • Loading Strategies
          • ID Generators
        • Listeners
        • Query Managers
          • MongoDB
          • Elasticsearch
          • Lucene
          • SQL Based
          • Odata Service
        • Handlers
          • Core Handlers
            • Write Data
            • Read Data
            • Query Data
            • Apply Rules
            • Call Rest API
            • Generate Text/Html
            • Parse Html
            • Generate Secrets
            • Orchestrate User Task
            • Perform File Operation
            • Run Shell Command
            • Send/Receive Emails
          • Custom Code Handlers
            • Run Scripts
            • Run Java Code
            • Run Java Package
          • Flow Handlers
            • Orchestrate Saga
            • Loop Each Entry
            • Run Multiple Steps
            • Buffer Payloads
            • Merge Parallel Steps
            • Log Event
            • Send Event
            • Validate Event
            • Transform Event
            • Perform DB Transaction
            • Trigger Runner Command
            • Do Nothing
            • Modify Role Data
            • Enrich Role Data
            • Convert Pulse to Journal
          • Gateway Handlers
            • Authenticate
              • No Authentication
              • State Based
              • Keycloak Based
            • Sessionize
          • Specialized Handlers
            • Apply Advanced Rules
            • Calculate Real-time Metrics
            • Score ML Models
            • Score LangChain Models
            • Service MCP Requests
            • Service A2A Requests
            • Consume Web of Things
            • Perform Text Embedding
            • Run Python Procedure
            • Generate Excel
            • Generate PDF
            • Call SOAP API
            • Integrate with Camel
        • Actions
        • Streams
          • Kafka Topic
          • CDC Feed
          • Camel Component
        • Roles
        • Generic Settings
        • Global Settings
      • Deployments
        • Defining a Deployment
        • Alternative Loaders
    • Gateway & Security
      • Gateway Servers
        • Gateway Systems
        • Gateway Channels
        • Gateway Services
        • Gateway Tokens
      • APIs
        • OpenAPI Specification
        • Response Formats
    • Administration
      • Managing Deployments
      • Sending Commands
      • Streaming Messages
      • Migrating Assets
    • Batch Tasks
      • Python Processes
      • Python Iterators
      • Python Processors
    • Pro-Code
      • Custom Handlers
      • Custom State Managers
      • Custom Query Managers
      • Custom CDC Managers
  • Design
    • Overview
    • User Interface
      • Apps
      • UIs
        • Listers
        • Widgets
          • Value Widgets
          • Array Widgets
          • Object Widgets
          • Indirect Widgets
          • Atom Widgets
        • Menus
          • Lister Menu Actions
          • Selection Menu Actions
          • Editor Menu Actions
          • Widget Menu Actions
          • Custom Menu Actions
          • RAI Menu Actions
        • Extended Scope
          • Conditional Display
          • Data Context
          • Extra Data
          • Default Item
          • Extra Events
      • Options
      • Translations
      • Icons
      • Styles
      • Components
    • API Mapping
    • Data Schema
      • Common Data
  • Configuration
    • Overview
    • Queries
      • Query Types
      • Query Platforms
        • MongoDB Queries
        • Odata Queries
        • SQL Queries
        • Elasticsearch Queries
        • Lucene Queries
        • Siddhi Queries
    • Business Rules
      • Drools Rules
    • Dynamic Handlers
  • Data Science
    • Overview
    • ML Models
      • Scheduler Platforms
        • Airflow Scheduler
    • GenAI Models
    • MCP Servers
    • Complex Event Processing
      • Siddhi Data Flows
    • Data Visualizations
    • Customizations
  • EXTENSIONS
    • JMESPath
    • Handlebars
Powered by GitBook

© Rierino Software Inc. 2025. All rights reserved.

On this page
  • Refresh List
  • Local Export List
  • Local Import List
  • Export List
  • Import List
  • Query API List
  • Render Html List
  • Render Template List
  • Toggle Action List
  • Run Code List
  1. Design
  2. User Interface
  3. UIs
  4. Menus

Lister Menu Actions

Lister menu actions represent actions on a business domain, available through drop-down menu in listers

Refresh List

Refreshes current list of displayed records.

Local Export List

Exports current filtered list of records directly through the UI as a JSON file with a single listing API call. This action is not used for exporting large list of records, since backend APIs do not return whole data set at once for such cases.

This action has the following special properties:

  • URL: URL path of the API endpoint to call for listing records.

  • Method: REST method to use for calling API endpoint.

  • Extra Body: Extra payload to add to the API call.

  • Close on Success: Whether action dialog should close on success.

Local Import List

Imports list of records from a local JSON file line by line with backend API calls for each line. This action is not used for importing large list of records, since it would not be utilizing bulk import capabilities of the database.

This action has the following special properties:

  • URL: URL path of the API endpoint to call for saving each record.

  • Method: REST method to use for calling API endpoint.

  • Extra Body: Extra payload to add to the API call.

  • Close on Success: Whether action dialog should close on success.

  • As New: Whether records should all be treated as new or could be used to update existing.

  • With ID: Whether record IDs should be retained or automatically replaced with new IDs.

Export List

Exports current filtered list of records calling a batch export process from backend. This action generates a process entry and produces a CSV or JSON file stored on server to be downloaded once the export operation is completed. This action is only used for exporting large list of records.

This action has the following special properties:

  • URL: URL path of the API endpoint to call for triggering export process.

Import List

Imports list of records from a CSV or JSON file uploaded to the server. This action initiates a process entry which is finalized asynchronously once the upload is completed. This action is only used for importing large list of records.

This action has the following special properties:

  • URL: URL path of the API endpoint to call for triggering import process.

Query API List

Sends a request to given API endpoint and displays results in a table with provided column details.

  • Columns: List of table columns to display.

  • Style: CSS style of table to display.

Render Html List

Renders static HTML content produced by the backend API and using currently displayed list. API endpoint typically uses handlebars templates related to the current item.

This action expects HTML to be displayed as "html" element in API response.

  • Filters: List of filters to use for enriching requests sent for html retrieval.

Render Template List

Renders dynamic HTML content based on the template provided using currently displayed list.

  • Template: Full template text to use for rendering data.

  • Filters: List of filters to use for enriching requests sent for template data retrieval.

  • Data Type: Format of content list received from API response to be rendered:

    • contents: List of {section, component, template, content}, adding template for each entry to base template and passing {component, content} as "[section]-data" to handlebars.

    • data: No formatting, passing received list as is

    • templates: List of {id, data: {template}}, adding template for each entry to base template

  • Data Template Form: Whether templates received from API response is already encapsulated as partial templates ("inline") or should be encapsulated automatically ("body")

  • Data Template Path: For "templates" data type, the path for getting template from list of entries. Defaults to "data.template".

Toggle Action List

Toggles a specific action on the current lister using a specific function its editor supports.

This action has the following special properties:

  • Function(fn): Function to call on current lister (e.g. setSelectionMode on a selectable QueryTableLister).

  • Arguments(args): Parameters to pass on to called function (e.g. ["text"]).

Run Code List

Runs a custom JavaScript code with access to specific widget functions and data as props (e.g. props.appliedFilters).

This action has the following special properties:

  • Code: JS code to execute.

PreviousMenusNextSelection Menu Actions

Last updated 7 months ago

This action has the following special properties in addition to :

This action has the following special properties in addition to :

This action has the following special properties in addition to :

API action properties
API action properties
API action properties