在组块之外使用时,include_all_fields
将呈现所有未明确写入CRUD操作块中的其余字段。
在RailsAdmin组中是否可以使用方法include_all_fields
?还是以某种方式呈现所有剩余字段,而这些字段尚未在同一CRUD操作块中的其他组中呈现?
例如
module DummyAdmin
extend ActiveSupport::Concern
included do
rails_admin do
edit do
group :first_group do
field :some_field
end
group :second_group do
field :another_field
field :yet_another_field
end
group :group_containing_all_other_fields do
include_all_fields # this renders an error
# I'm looking for some other way to render all remaining fields inside this group block
end
end
end
end
end