Drop-Down List
A dropdown list lets the user pick one or several alternatives from a fixed set of alternatives.
Single Choice
To restrict the user to picking a single alternative in a drop-down list, use the option input.
Figure 1. A drop-down list for selecting a single alternative, rendered in the browser.
Multiple Choice
To allow the user to pick an arbitrary number of alternatives from a drop-down list, use the options entry.
In the examples, note the s
at the end of options
. This is what distinguishes the multiple choice drop-down from the single-choice drop-down.
Data Source Dimensions
A common use case is when the end user should select a value from a Data Source. For example, the user should be allowed to pick one of the years for which there is data.
DataSource.groovy
void buildDimensionInput(
String inputName,
String dataMartName,
String dimensionColumnName
) {
def datamart = libs.Library_Queries.DataMart
def uniqueValues = datamart.getUniqueValues(
dataMartName,
dimensionColumnName
)
api.inputBuilderFactory()
.createOptionEntry(inputName)
.setOptions(uniqueValues)
.getInput()
}
During Input Generation
dataSourceInputs.buildDimensionInput(
'Year',
'Transaction',
'InvoiceDateYear'
)
, multiple selections available, Use left or right arrow keys to navigate selected items
Found an issue in documentation? Write to us.