Sha256: 63887871132b37aa3514843d23b3eaeabdc30415d855864fe7d4a0845dec1813

Contents?: true

Size: 411 Bytes

Versions: 5

Compression:

Stored size: 411 Bytes

Contents

<%= grid(@tasks_grid) do |g|
  g.column name: 'ID', attribute: 'id', filter: false
  g.column name: 'Title', attribute: 'title'
  g.column name: 'Priority', attribute: 'priority_id',
    custom_filter: [['NOT DEFINED', 'null'], ['DEFINED', 'not null']] + Priority.to_dropdown do |task|
    task.priority.name if task.priority
  end
  g.column   do |task|
    link_to('Edit', edit_task_path(task))
  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/null_values/_grid.html.erb
wice_grid-7.1.3 spec/support/test_app/app/views/null_values/_grid.html.erb
wice_grid-7.1.2 spec/support/test_app/app/views/null_values/_grid.html.erb
wice_grid-7.1.1 spec/support/test_app/app/views/null_values/_grid.html.erb
wice_grid-7.1.0 spec/support/test_app/app/views/null_values/_grid.html.erb