Sha256: 6cbcbc6bb76318d7aa38ec90138cb6cd6b8ec12f245ff826227d3a882a15763d

Contents?: true

Size: 910 Bytes

Versions: 15

Compression:

Stored size: 910 Bytes

Contents

<%= grid(@tasks_grid, hide_submit_button: true) do |g|
  g.column name: 'ID', attribute: 'id', filter: false
  g.column name: 'Title', attribute: 'title', auto_reload: true
  g.column name: 'Priority', attribute: 'priority_id', custom_filter: Priority.to_dropdown, auto_reload: true do |task|
    task.priority.name if task.priority
  end
  g.column name: 'Status', attribute: 'status_id', custom_filter: Status.to_dropdown, auto_reload: true  do |task|
    task.status.name if task.status
  end
  g.column name: 'Project Name', attribute: 'project_id', custom_filter: Project.to_dropdown, auto_reload: true do |task|
    task.project.name if task.project
  end
  g.column  name: 'Archived', attribute: 'archived', auto_reload: true do |task|
    task.archived? ? 'Yes' : 'No'
  end
  g.column name: 'Added', attribute: 'created_at', auto_reload: true do |task|
    task.created_at.to_fs(:short)
  end
end -%>

Version data entries

15 entries across 5 versions & 1 rubygems

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