Skip to main content

Select Box

The Select Box component is a UI element for item selection from a list of embedded Stylebox components. It streamlines selection through a dropdown-style interface, sourcing display data from a Qodly Source and allowing customization with multiple embedded components.

info

Categorized as part of iterative components, the Select Box facilitates user selections by iterating over a qodlysource.


The Select Box component is notable for its capacity to present complex options as a dropdown list using embedded components, distinguishing it from the Select Input component that offers less versatile option displays.

Use Cases

The Select Box component finds application in various scenarios where a single value needs to be selected from a predefined list. Common use cases include:

  • Employee Allocation: In resource management applications, the Select Box component can assist in assigning employees to projects or tasks by providing a dropdown list of available team members.

  • Task Priority Selection: When managing tasks within a backoffice application, users might need to assign priorities to tasks. The Select Box component can offer a dropdown list of priority levels, simplifying the process of assigning importance to tasks.

  • Department Selection for Ticketing: In a support ticketing system, users can choose the department or category to which a ticket belongs. The Select Box component streamlines this process by offering a dropdown menu of available departments, ensuring that tickets are routed to the appropriate team.

Properties Customization

Enhance the Select Box component to align with your application's requirements using the following customization options:

  • Placeholder: Display a text as a dimmed placeholder in the select box.
  • Number of items: Specify the maximum number of items to display simultaneously in the component.
info

The select box can display a maximum of 15 items.


  • Show length: Adds a string indicating the total number of items within the component. You can customize this pattern to suit your requirements, ensuring users have a clear understanding of the available options.
  • Enable search: Adds a search area to the top of the component. This empowers users to filter the displayed options by entering specific characters. Developers have the flexibility to define the qodlysource attribute(s) to be searched within, enhancing the efficiency of option discovery.

Data Integration

The Select Box component is data-bound, meaning it relies on an external Qodly Source to populate its options. This allows the component to display and interact with data.

info

The qodlysource for the Select Box component can take the form of either an ORDA entity selection or a collection.

Data Binding

To associate data with the Select Box component, follow these steps:

  1. Navigate to the Properties Panel: Access the Data Access category located within the Properties panel for the Select Box component.

  2. Define the Qodly Source: Specify the appropriate qodlysource that contains the data you want to display within the Select Box. For instance, you can select an entity selection, such as the Destination dataclass.
tip

Alternatively, you can establish the connection by dragging and dropping the qodlysource onto the Select Box component.

Data Display

To associate data iterated over a Qodly Source, you can follow these additional steps:

  1. Access the Select Box: Within the Select Box component, locate the embedded Stylebox.

  2. Add a Component: Add a Text component or other relevant components within the Stylebox.

  3. Configure the Component: Click on the component you've added to enter its editing mode. The process of configuring components varies based on their type:

    a. Toggle Qodly Source: Prepare to connect the component to the qodlysource in the next step by using the Toggle Qodly Source button.

    b. Properties Panel: In the next step, you'll configure them through the Data Access category in the Properties panel.

  1. Choose the Iterator: Choose the iterator corresponding to the iterated data (e.g., $This) to represent the current data item.

  2. Choose the Attribute: Once you've selected the iterator, choose the specific attribute that you want to display within the component. This could be attributes like the name of the destination, the country, or any other relevant information.

Dynamic Attribute Display

The Select Box component can link its currently selected entity to a qodlysource in the Selected Element field. This feature allows the component to automatically display the attributes of the selected element whenever a new entity is chosen.
These attributes can be showcased in other configured components, such as a Text component, to display the corresponding attribute values.

For more information, see the Iterative components section.

Server-Side Interaction

You can associate functions with embedded components in the Select Box component using $This. This capability enables the execution of functions from the entity class of the qodlysource that is providing data and being iterated upon in response to event triggers, such as button clicks.

To implement this functionality, follow these steps:

  1. Integrate the Select Box component into the interface.
  2. Select a Qodly Source for the Select Box.
  3. Embed a component (e.g., a button) within the Select Box for each iterated data.
  1. Bind the desired function to the component's event, such as a button click, using $This.
  1. In the code editor, within the function, you can directly retrieve the data of the currently selected element without the need to pass the selected element qodlysource as a parameter to the function.

Customizing Select Box Styles

The Select Box component offers additional customization options through CSS, allowing for a personalized appearance of its elements.

Understanding Select Box CSS Classes

The Select Box component supports various CSS classes, enabling customization of the select box wrapper, container, menu wrapper, and virtual list. Below is a detailed list of the supported CSS classes and their corresponding elements.

Select Box Classes

Class NameApplies ToDescription
.fd-selectbox__wrapperThe select box headerStyles the default view of the select box, displaying the selected option when the select box is closed.
.fd-selectbox__containerThe choices inside the select boxApplies styles to all available choices inside the select box.
.fd-selectbox__container > div:hoverComponents within choicesStyles individual components inside each choice when hovered.
.FdVirtualListThe select box options listApplies styles to the list of choices in the select box.
.fd-selectbox__menu_wrapperThe select box menuStyles the entire select box menu, including the search area.

Custom styling examples

The following examples demonstrate how to customize the Select Box component's appearance.

Example 1: Select Box Wrapper

This example styles the Select Box header, using a silver background color, rounded corners, and shadow effects to create a sense of depth.


self .fd-selectbox__wrapper {
border-radius: 10px;
background-color: #E0E0E0;
box-shadow: -4px 4px 10px rgba(220, 220, 220, 0.4), -2px 2px 10px rgba(192, 192, 192, 0.3);
}

Example 2: Select Box Container

This example styles the Select Box Container with rounded corners, a soft text color, the Georgia font, and shadow effect to enhance its appearance.


self .fd-selectbox__container {
border-radius: 10px;
box-shadow: -4px -4px 10px rgba(220, 220, 220, 0.4), 4px -4px 10px rgba(192, 192, 192, 0.3);
color: rgba(28, 32, 157, 0.8);
font-family:Georgia, 'Times New Roman', Times, serif;
margin: 0 5% 5% 5%;
}

Example 3: Select Box Container Hovered

In this example each choice within the select box is customized with rounded corners, a Gill Sans font, and a shadow effect to highlight it when hovered.


self .fd-selectbox__container > div:hover{
border-radius: 5px;
box-shadow: -4px 4px 10px rgba(185, 168, 208, 0.949), -2px 2px 10px rgba(179, 132, 188, 0.3);
color: rgba(6, 5, 5, 0.963);
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size:50px;
}

Example 4: Select Box Virtual List

In this example, the virtual list of the Select Box is customized by applying a background color in purple and text color that contrasts well. The font is set to "Gill Sans" for a clean, modern appearance.


self .FdVirtualList {
background-color: rgb(87, 17, 127);
color: rgb(141, 147, 217);
font-family: "Gill Sans", sans-serif;
}

Example 5: Select Box menu wrapper

This example customizes the Select Box menu by applying a light gray background, a cursive font for the text, and a soft shadow for added depth.


self .fd-selectbox__menu_wrapper {
color:rgb(152, 92, 8);
background-color: #E0E0E0;
font-family: cursive;
box-shadow: -4px 4px 10px rgba(184, 184, 185, 0.949), -2px 2px 10px rgba(152, 151, 152, 0.3);
}

Showcase

Here's a glimpse of how the Select Box component will look and behave in action:

Triggers and Events

The Select Box component can respond to various events, enabling dynamic user experiences. Events that can trigger actions within the component include:

EventDescription
On ClickCalls for an action when the user clicks on the component.
On SelectCalls for an action when an item within the component is selected.