I did created on one model with boolean field
rails g model saas reserved_seat:boolean
when i add new record it will show only ✓ , ✘ and ‒
Instead i need to value display neither 'true' or 'false' nor 'ON' or 'OFF' in string
I did created on one model with boolean field
rails g model saas reserved_seat:boolean
when i add new record it will show only ✓ , ✘ and ‒
Instead i need to value display neither 'true' or 'false' nor 'ON' or 'OFF' in string
Refer the documentation here wiki
RailsAdmin.config do |config|
config.model 'Saas' do
edit do
field :reserved_seat, :string
end
end
end
What I did was: