lib/table_settings/table_column.rb in it-logica-application-backbone-1.3.22 vs lib/table_settings/table_column.rb in it-logica-application-backbone-1.3.23

- old
+ new

@@ -113,9 +113,15 @@ # When using the filter box in header but filters in own way, not by table (just passing already filtered AREL to table) def inactive_filter(bool = true) @column_hash[:inactive_filter] = bool self end + + # Set if column is excluded from csv export + def csv_excluded(bool = false) + @column_hash[:csv_excluded] = bool + self + end end class CustomColumn < Column \ No newline at end of file