.ui.selection.dropdown not working under mac chrome
Closed this issue · 2 comments
lajunta commented
When I use .ui.selection.dropdown , there is no dropdown effect
but when I use .ui.dropdown , it works good.
I don't know what's wrong
my code is here: (I use slim template engine)
.ui.selection.dropdown
.text Select Group Type
i.dropdown.icon
select.menu[id='group[type]']
- @type.each do |t|
option.item[value=t] = t
nd0ut commented
.ui.selection.dropdown
input type="hidden" name="gender"
.text Select Group Type
i.dropdown.icon
.menu
- ["male", "female"].each_with_index do |t, i|
.item data-value="#{i}" #{t}
There is no need to use select input. Just hidden input, and it's value will be changing automatically when user make selection.
lajunta commented
Thanks nd0ut , the code works well now.