Sha256: e3625585bd7b4df71df9ce83343508cc808de57703463ad3e86838780a1e26ce

Contents?: true

Size: 629 Bytes

Versions: 12

Compression:

Stored size: 629 Bytes

Contents

<%= grid(@tasks_grid) do |g|

  g.column name:  'ID', attribute: 'id', filter: false

  g.column name:  'Title', attribute: 'title'

  g.column  name:  'Archived', attribute: 'archived' do |task|
    task.archived? ? 'Yes' : 'No'
  end

  g.column name:  'Due Date', attribute: 'due_date' do |task|
    task.due_date if task.due_date
  end

  g.column name:  'Added', attribute: 'created_at' do |task|
    task.created_at.to_s(:db)
  end

  g.column name:  'Updated', attribute: 'updated_at', filter_type: :rails_datetime_helper, filter_control_options: {start_year: 2011} do |task|
    task.updated_at.to_s(:db)
  end


end -%>

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
wice_grid-6.1.3 spec/support/test_app/app/views/dates/_grid.html.erb
wice_grid-6.1.2 spec/support/test_app/app/views/dates/_grid.html.erb
wice_grid-6.1.1 spec/support/test_app/app/views/dates/_grid.html.erb
wice_grid-6.1.0 spec/support/test_app/app/views/dates/_grid.html.erb
pwice_grid-7.0.0 spec/support/test_app/app/views/dates/_grid.html.erb
pwice_grid-6.1.2 spec/support/test_app/app/views/dates/_grid.html.erb
pwice_grid-6.1.1 spec/support/test_app/app/views/dates/_grid.html.erb
pwice_grid-6.1.0 spec/support/test_app/app/views/dates/_grid.html.erb
pwice_grid-5.0.2 spec/support/test_app/app/views/dates/_grid.html.erb
pwice_grid-5.0.1 spec/support/test_app/app/views/dates/_grid.html.erb
pwice_grid-5.0.0 spec/support/test_app/app/views/dates/_grid.html.erb
wice_grid-4.1.0 spec/support/test_app/app/views/dates/_grid.html.erb