Sha256: 3058bd79318b4ca2fa42370b4c82de6336df844d04082ea098aebd866d67380b

Contents?: true

Size: 832 Bytes

Versions: 5

Compression:

Stored size: 832 Bytes

Contents

<%= grid(@tasks_grid) do |g|
  g.action_column html_check_box: false do |task|
    task.status.name != 'Assigned'
  end
  g.column name: 'ID', attribute: 'id', filter_type: :range
  g.column name: 'Title', attribute: 'title', negation: true
  g.column name: 'Archived', attribute: 'archived' do |rec|
    rec.archived? ? 'Yes' : 'No'
  end
  g.column name: 'Status', attribute: 'status_id', custom_filter: Status.to_dropdown  do |task|
    task.status.name if task.status
  end
  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: '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
end -%>

Version data entries

5 entries across 5 versions & 1 rubygems

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