olleh
olleh

Reputation: 1277

Create active admin input dropdown using words array

How do I create a custom input field in Active admin?

This is for an input field gender, which would contain ["Male","Female"]

Upvotes: 0

Views: 920

Answers (1)

Santhosh
Santhosh

Reputation: 29124

form do |f|
  f.input :gender, collection: ["Male", "Female"]
  ..
end

Upvotes: 5

Related Questions