Method: Wice::WiceGrid#current_page_records

Defined in:
lib/wice_grid.rb

#current_page_recordsObject

Returns the list of objects displayed on current page. Should only be called after the grid helper.

Raises:



543
544
545
546
# File 'lib/wice_grid.rb', line 543

def current_page_records
  raise WiceGridException.new('current_page_records can only be called only after the grid view helper') unless self.view_helper_finished
  @resultset
end