Sha256: ad9729c4c84abaa0e09dde808df99ca9290088661e1c269a5390ecb0fa1f14ca

Contents?: true

Size: 617 Bytes

Versions: 5

Compression:

Stored size: 617 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_fs(:db)
  end
  g.column name: 'Updated', attribute: 'updated_at', filter_type: :rails_datetime_helper, filter_control_options: {start_year: 2021} do |task|
    task.updated_at.to_fs(:db)
  end
end -%>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
wice_grid-7.1.4 spec/support/test_app/app/views/dates/_grid.html.erb
wice_grid-7.1.3 spec/support/test_app/app/views/dates/_grid.html.erb
wice_grid-7.1.2 spec/support/test_app/app/views/dates/_grid.html.erb
wice_grid-7.1.1 spec/support/test_app/app/views/dates/_grid.html.erb
wice_grid-7.1.0 spec/support/test_app/app/views/dates/_grid.html.erb