0

如何禁用/刪除的角度UIB-日期選擇月/年的導航按鈕(https://angular-ui.github.io/bootstrap/#!#datepicker刪除月份導航按鈕

enter image description here

我們要刪除的能力,以吸引用戶點擊在導航箭頭之間的「月/年」的文字並不能弄明白

+0

我相信的,如果你改變模板,對於一些不至極與contauins頭山,將模板的網址是什麼?(默認:UIB /模板/日期選擇器/ datepicker.html) –

回答

0

你必須訪問HTML模板本身和刪除/禁用與該按鈕相關的input

The template on github can be found here

你將不得不修改行5

<th colspan="{{::5 + showWeeks}}"><button id="{{::uniqueId}}-title" role="heading" aria-live="assertive" aria-atomic="true" type="button" class="btn btn-default btn-sm uib-title" ng-click="toggleMode()" ng-disabled="datepickerMode === maxMode" tabindex="-1"><strong>{{title}}</strong></button></th> 

這只是白天模式,您可以爲月份和年份模式做同樣的,如果有必要會

2

你可以將其隱藏用CSS:

.uib-datepicker thead 
{ 
    display:none; 
} 
/* fix weeks padding if showing weeks */ 
.text-center.h6.ng-scope { 
    padding: 8px; 
}