Opadeez Help Center

Value Lists

Overview

Value Lists provide standardized dropdown options for attributes, ensuring data consistency and improving user experience. They define predefined choices that users can select from, eliminating data entry errors and maintaining uniform data across your application.

Value Lists Configuration

Value Lists interface showing configuration options and entry management

Value List Configuration

Value List Name

Table Name (Optional)

Save Value Lists

Value List Entries

Entry Properties

Value

Text

Dependency Value

Dependency Implementation Example

Project Status/Sub-Status Cascade

Here's a practical example of implementing a two-level dependency system for project management:

Step 1: Create ProjectStatus Value List

Step 2: Create ProjectSubStatus Value List

Naming Strategy: Prefix sub-status codes with the parent status code to ensure uniqueness and logical grouping.

Step 3: Create Attributes with Dependencies

Create two attributes in your Project entity (see Entities & Attributes for details):

Status Attribute
SubStatus Attribute

Additional Geographic Example

For more complex hierarchies, you can implement Country/State/City cascades:

Country Value List

State Value List

City Value List

Best Practices

Value Design

Text Display

Dependency Management

Performance Considerations

Common Use Cases

Status Lists

Category Systems

Geographic Data

Dynamic Value Lists

Table-Based Implementation

For dynamic or large value lists, use database tables:

  1. Create Database Table: With Value, Description, and DependencyValue columns
  2. Populate Data: Insert your options into the table
  3. Configure Value List: Set "Table name" to your database table
  4. Benefits: Easy updates, large datasets, external data integration

Maintenance Advantages

Getting Started

Ready to create value lists? Follow these resources:

Related Topics

Pro Tip: Start with simple value lists for status fields, then implement dependency chains for more complex relationships like geographic hierarchies.