Sha256: 706b693a52301688c86a02376203b59267499c6a3bf28cab9c291ceac1e1eed0

Contents?: true

Size: 674 Bytes

Versions: 12

Compression:

Stored size: 674 Bytes

Contents

<%= grid(@tasks_grid, show_filters: :always) do |g|

  g.column name:  'Project Name', attribute: 'project_id', custom_filter: Project.to_dropdown do |task|
    task.project.name if task.project
  end

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

  #                                                                                        returns an array of 2-element arrays
  g.column name:  'Priority', attribute: 'priority_id', custom_filter: Priority.to_dropdown do |task|
    task.priority.name if task.priority
  end

  g.column name:  'Status', attribute: 'status_id', custom_filter: Status.to_dropdown  do |task|
    task.status.name if task.status
  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/tasks/_grid.html.erb
wice_grid-6.1.2 spec/support/test_app/app/views/tasks/_grid.html.erb
wice_grid-6.1.1 spec/support/test_app/app/views/tasks/_grid.html.erb
wice_grid-6.1.0 spec/support/test_app/app/views/tasks/_grid.html.erb
pwice_grid-7.0.0 spec/support/test_app/app/views/tasks/_grid.html.erb
pwice_grid-6.1.2 spec/support/test_app/app/views/tasks/_grid.html.erb
pwice_grid-6.1.1 spec/support/test_app/app/views/tasks/_grid.html.erb
pwice_grid-6.1.0 spec/support/test_app/app/views/tasks/_grid.html.erb
pwice_grid-5.0.2 spec/support/test_app/app/views/tasks/_grid.html.erb
pwice_grid-5.0.1 spec/support/test_app/app/views/tasks/_grid.html.erb
pwice_grid-5.0.0 spec/support/test_app/app/views/tasks/_grid.html.erb
wice_grid-4.1.0 spec/support/test_app/app/views/tasks/_grid.html.erb