我正在使用 play framework 2,我需要两个相关的下拉列表。例如,在第一个列表中将出现字母表中的字母并选择其中的一个,在第二个列表中仅包含以该字母开头的单词。
谢谢。
@helper.form(action = routes.Application.index) {
@select(
formABC("letter"),
options(DropDownList.letters),
'_default -> "--- Choose a letter ---",
'_label -> "Letter"
)
...
And here I need the other @select