public interface FormTableHandler
Modifier and Type | Method and Description |
---|---|
default List<DMSForm> |
getList(List<DMSForm> list)
Non null overwrites the list, should return list of forms
|
default void |
init(HttpServletRequest req,
FormContext ctx)
You can init your class with the request
|
default String |
lineStyle(DMSForm f,
String style)
Change the style of the line.
|
default void |
modifyColumns(List<ColumnDescription> colDescs)
Allows modification of the table header
|
default void |
modifyTableLine(DMSForm f,
Map<String,Object> line)
Your chance to modify the line, called for each table line.
|
default void init(HttpServletRequest req, FormContext ctx)
req
- the requestctx
- holds context information for the formdefault List<DMSForm> getList(List<DMSForm> list)
list
- the list of formsdefault void modifyColumns(List<ColumnDescription> colDescs)
colDescs
- list of header fieldsdefault void modifyTableLine(DMSForm f, Map<String,Object> line)
f
- the formline
- the line@enterprise 10.0.39049 Copyright © 2024 FREQUENTIS AG. All Rights Reserved.