nd0ut/semantic-ui-rails

.ui.selection.dropdown not working under mac chrome

Closed this issue · 2 comments

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

.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.

Thanks nd0ut , the code works well now.