Interface WorkListDecorator Reference
You need to implement this interface to customize the appearance of the rows and/or cells in the Work
List panel table. The class implementing this interface should contain the logic to decide how to render a row
or a cell in the Work List panel. This logic is based on the instance information.The methods
getCellStyle() and getCellValue() define how cells
are rendered.The method getRowStyle defined the style used to render a complete row.
fuego.workspace.model.view.WorkListDecorator
- getCellStyle()
Returns a String containing the CSS inline style to render the cell of the given column and row. If the return value is null the cell is rendered with ALBPM WorkSpace default style.
- getValue()
Returns the HTML for the given cell value. If the method returns NULL the original value will be rendered
- getRowStyle()
Returns the CSS inline style for the given row. If the method returns NULL the original style will be applied.