2012-11-02 79 views
0

當我包含knockout.js庫時,所有選擇的字段都消失。有沒有辦法讓選擇字段忽略knockout.js?使用Knockout.js選擇字段

它不僅影響我的下拉,而且還影響日期選擇器......即,我有以下代碼:

<center> 
     <%= f.text_field :firstdate, :style=>"width:150px;" %> 
     - 
     <%= f.text_field :seconddate, :style=>"width:150px;" %> 
     <script> 
     $(function() { 
      $("#post_firstdate").datepicker({ 
        changeMonth: true, 
        changeYear: true, 
        yearRange: "-112:+5" 
      }); 
      $("#post_seconddate").datepicker({ 
        changeMonth: true, 
        changeYear: true, 
        yearRange: "-112:+5" 
      }); 
     }); 
     </script> 
    </center> 

雖然我可以選擇在數據選擇器的日期,一般月份和年份字段的下拉菜單,以及。現在他們消失了。

有沒有關於如何讓某些領域忽略淘汰賽的建議?

謝謝。

回答

0

沒關係,找到答案...只需從dropout.css中刪除此方法只有你想dropkick更改的字段纔會生效。

.dk_fouc select { 
    position: relative; 
    top: -99999em; 
    visibility: hidden; 
}