2015-11-07 34 views
2

enter image description here如何在boostrap datetimepicker中隱藏標題導航?

如何在datetimepicker以下圖像中隱藏標題導航。任何人建議或指導如何解決這個問題。

我的代碼 HTML

<div class="input-append"> 
    <input type="text" name="start_time" placeholder="00:00 AM/PM" class="input-mini statusTime" value="{$response.start_time}" style="width: 100px;" /> 
    <span class="add-on glyphicons clock"><i></i></span> 
</div> 

腳本

$('.statusTime').datetimepicker({ 
     format: "HH:ii P", 
     showMeridian: true, 
     autoclose: true, 
     todayBtn: false, 
     pickDate: false, 
     startView: 1 
    }); 
+1

不確定添加的鏈接引用了正確的datetimepicker。大多數使用的選項都不是該腳本的有效選項,並且時間選擇看起來不同。如果確實是那個腳本,格式爲:「hh:mm A Z」應該可以解決問題 –

回答

3

嘗試添加這對你的CSS,它是元素的顯示器沒有,你不希望顯示

.table-condensed thead .picker-switch, .table-condensed thead .prev, .table-condensed thead .next 
{  
    display: none; 
} 
+0

非常感謝。這對我來說可以。 –