lib/table_settings/table_column.rb in it-logica-application-backbone-1.0.47 vs lib/table_settings/table_column.rb in it-logica-application-backbone-1.0.48
- old
+ new
@@ -88,9 +88,17 @@
@column_hash[:summarize_all] = true
@column_hash[:summarize_all_label] = label unless label.nil?
self
end
+ # Defines column with non-breakable content (for example column with more buttons)
+ #
+ # @param [Boolean] bool
+ #
+ def non_breakable(bool = true)
+ @column_hash[:non_breakable] = bool
+ self
+ end
end
class CustomColumn < Column
\ No newline at end of file