Thanks Sergio that did the trick. For others with the same issue here
is the controller that worked for me:
class UsersController < ApplicationController
active_scaffold :user do |conf|
conf.columns =
[:username,:password,:password_confirmation,:email,:created_at,:created_by,:updated_at,:updated_by]
conf.list.columns.exclude [:password, :password_confirmation]
conf.columns[:password].form_ui = :password
conf.columns[:password_confirmation].form_ui = :password
end
end
--
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.