我相信由于jQuery UI Bootstrap,我已成功将this gem与Rails集成,因为日期选择器似乎正常工作。
我正在尝试生成一个单选按钮,并且在使用jQuery UI功能和Bootstrap样式时遇到了一些问题。
我有以下erb:
<div class="ui-buttonset">
<%= f.radio_button :available, true, checked: true, class: 'ui-helper-hidden-accessible' %>
<%= label :available, 'Available', value: true, class: 'ui-button ui-widget ui-corner-left' %>
<%= f.radio_button :available, false, class: 'ui-helper-hidden-accessible' %>
<%= label :available, 'Unavailable', value: false, class: 'ui-button ui-widget ui-corner-right' %>
</div>
使用javascript $('.ui-buttonset').buttonset();
和$('button').button();
,但是当我悬停,点击等时没有任何反应。对于UI元素,已检查的attr或其他任何内容都没有任何更改。告诉。我是否需要为此功能手写javascript,或者我有什么遗漏?
答案 0 :(得分:0)
问题似乎是a conflict between Bootstrap and jQuery UI Bootstrap。也许最好直接手动将javascript添加到我的vendor
目录,而不是依赖于宝石。