We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would be nice to be able to configure several fields at once as follows:
rails_admin do configure [:field1, :field2] do visible do !bindings[:object].new_record? end end end
The text was updated successfully, but these errors were encountered:
Any RoadMap for this
Sorry, something went wrong.
Yeah would be great to implement this
In the meantime, you can do:
[:field1, :field2].each do |field| configure field do visible do !bindings[:object].new_record? end end end
Successfully merging a pull request may close this issue.
Would be nice to be able to configure several fields at once as follows:
The text was updated successfully, but these errors were encountered: