Browse Source

Needed to add task_list_id as attr_accessible

Also improved labels for adding task
denney-fix-saving-dates
Jason Denney 11 years ago
parent
commit
a11f5a1b91
  1. 11
      app/components/tasks.rb
  2. 2
      app/models/task.rb

11
app/components/tasks.rb

@ -29,13 +29,14 @@ class Tasks < Netzke::Basepack::Grid
end
def default_fields_for_forms
fields = []
fields << { :no_binding => true, :xtype => 'displayfield', :fieldLabel => "No Bike Selected", :value => "Select a Bike First!"}
fields.concat( [
bike = Bike.find_by_id(session[:selected_bike_id])
bike = "Select a Bike First!" if bike.nil?
[
{ :no_binding => true, :xtype => 'displayfield', :fieldLabel => "Bike Selected", :value => "#{bike.to_s}"},
:done,
:task,
:notes
])
:notes,
]
end
#override with nil to remove actions

2
app/models/task.rb

@ -1,5 +1,5 @@
class Task < ActiveRecord::Base
attr_accessible :task, :notes, :done
attr_accessible :task, :notes, :done, :task_list_id
belongs_to :task_list

Loading…
Cancel
Save