Module: UU::DataTable

Included in:
DataTable, DataTableModel
Defined in:
uu_datatable-0.11.6/lib/uu/datatable.rb,
uu_datatable-0.11.6/lib/uu/datatable/datatable.rb,
uu_datatable-0.11.6/lib/uu/datatable/datatable_model.rb

Overview

DataTable module

Defined Under Namespace

Classes: DataTable, DataTableModel

Instance Method Summary (collapse)

Instance Method Details

- (Object) attributes



597
598
599
600
601
602
603
604
605
# File 'uu_datatable-0.11.6/lib/uu/datatable/datatable.rb', line 597

def attributes
 
  hash = super;
  if (hash[:data].kind_of?DataTableModel)
    hash[:data] = hash[:data].send(:get_response_data);
  end
  
  return hash;
end