Skip to content

下拉列表

清沐 edited this page Nov 14, 2024 · 7 revisions

DefaultExcelBuilder、DefaultStreamExcelBuilder下拉列表

总字符可超过250字符

上述两种产生下拉列表非常简单,只需要一个一个List或者Array,默认成为下拉列表。

@ExcelColumn(title="下拉列表")
List<String> options;

模板下拉列表

在td单元格上加上属性“dropDownList”,单元格内容如:选项1,选项2,选项3,以英文逗号,分隔

<td dropDownList>选项1,选项2,选项3</td>

如果期望某一列全列引用该下拉列表,可以添加dropdownlist-full-column-reference属性,dropdownlist-not-show-first-option用于控制是否默认展示第一个值。

Clone this wiki locally