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 Items panel. This logic is based on the work item information.The methods
getCellStyle() and getCellValue() define how to render the cells of the
Work Items panel table. The method getRowStyle() defines 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 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 is applied.