Interface CsvAwareListViewRenderer
-
public interface CsvAwareListViewRendererCSV action exports all columns to CSV file by default. It ignores all columns with custom renderers. Renderer should implement this interface if you want to append its value to CSV file.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetCsvValue(java.lang.Object object, ListColumn listColumn)Allows to prepare value which should be appended to CSV file.
-
-
-
Method Detail
-
getCsvValue
java.lang.String getCsvValue(java.lang.Object object, ListColumn listColumn)Allows to prepare value which should be appended to CSV file.- Parameters:
object- model instancelistColumn- configuration of the column- Returns:
- value which should be placed in CSV file
-
-