Sha256: 813cd2a32dad980bf20c922f274b85a58555cea7501171b68bda084cc8f479a8

Contents?: true

Size: 673 Bytes

Versions: 12

Compression:

Stored size: 673 Bytes

Contents

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

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

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

  g.column name:  'Found in version', assoc: :relevant_version,
           attribute: 'name', custom_filter: :auto, allow_multiple_selection:  false do |task|
    task.relevant_version.name if task.relevant_version
  end

  g.column name:  'Expected in version', attribute: 'expected_version_id',
           custom_filter: [:expected_version, :to_option], allow_multiple_selection:  false do |task|
    task.expected_version.name if task.expected_version
  end

  g.column   do |task|
    link_to('Edit', edit_task_path(task))
  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/custom_filters4/_grid.html.erb
wice_grid-6.1.2 spec/support/test_app/app/views/custom_filters4/_grid.html.erb
wice_grid-6.1.1 spec/support/test_app/app/views/custom_filters4/_grid.html.erb
wice_grid-6.1.0 spec/support/test_app/app/views/custom_filters4/_grid.html.erb
pwice_grid-7.0.0 spec/support/test_app/app/views/custom_filters4/_grid.html.erb
pwice_grid-6.1.2 spec/support/test_app/app/views/custom_filters4/_grid.html.erb
pwice_grid-6.1.1 spec/support/test_app/app/views/custom_filters4/_grid.html.erb
pwice_grid-6.1.0 spec/support/test_app/app/views/custom_filters4/_grid.html.erb
pwice_grid-5.0.2 spec/support/test_app/app/views/custom_filters4/_grid.html.erb
pwice_grid-5.0.1 spec/support/test_app/app/views/custom_filters4/_grid.html.erb
pwice_grid-5.0.0 spec/support/test_app/app/views/custom_filters4/_grid.html.erb
wice_grid-4.1.0 spec/support/test_app/app/views/custom_filters4/_grid.html.erb