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 end
def default_fields_for_forms def default_fields_for_forms
fields = [] bike = Bike.find_by_id(session[:selected_bike_id])
fields << { :no_binding => true, :xtype => 'displayfield', :fieldLabel => "No Bike Selected", :value => "Select a Bike First!"} bike = "Select a Bike First!" if bike.nil?
fields.concat( [ [
{ :no_binding => true, :xtype => 'displayfield', :fieldLabel => "Bike Selected", :value => "#{bike.to_s}"},
:done, :done,
:task, :task,
:notes :notes,
]) ]
end end
#override with nil to remove actions #override with nil to remove actions

2
app/models/task.rb

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

Loading…
Cancel
Save