Class: Effective::TableRows::PercentField
- Inherits:
-
Effective::TableRow
- Object
- Effective::TableRow
- Effective::TableRows::PercentField
- Defined in:
- app/models/effective/table_rows/percent_field.rb
Instance Attribute Summary
Attributes inherited from Effective::TableRow
#builder, #name, #options, #template
Instance Method Summary collapse
Methods inherited from Effective::TableRow
#controller_namespace, #hint, #initialize, #label, #label_content, #to_html, #tr_class, #value
Constructor Details
This class inherits a constructor from Effective::TableRow
Instance Method Details
#content ⇒ Object
7 8 9 10 11 |
# File 'app/models/effective/table_rows/percent_field.rb', line 7 def content return unless value.present? str = value.kind_of?(Integer) ? ('%.3f' % (value / 1000.0)) : value.to_s str.gsub('.000', '') + '%' end |