Using latest active_scaffold and Rails 2.3.2 (also installed rails-2.3
version of render_component plugin), the is_admin and another flag on
the activerecord are not showing up in the edit or create of the
record, but they are displayed in list and show.

The schema.rb shows that the fields are defined like this:

  create_table "users", :force => true do |t|
    ...
    t.boolean  "is_admin",       :precision => 1, :scale => 0
    ...

and in the controller we have:

  active_scaffold :user do |config|
    config.columns = [ ..., :is_admin, ...]
    columns[:is_admin].form_ui = :checkbox
  end

This also happens when form_ui is not set to :checkbox.

We don't have any view override(s) for this controller.

Thanks in advance for any assistance or ideas you can provide,

Gary

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"ActiveScaffold : Ruby on Rails plugin" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/activescaffold?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to