我正在使用sap.m.Datepicker,点击日期图标会显示一个显示当前月份和所有日期的日历。 我只想显示一个有月份选择的日历,而不是显示日期。
Datepicker control showing month dates
Date picker showing months (这是我要找的,点击日期图标)
答案 0 :(得分:2)
目前使用标准sap.m.Datepicker
,其不可能只显示数年的数月。
您可以create a custom control执行此操作。
答案 1 :(得分:0)
这可以通过以下方式完成:
var oCalendar = new sap.ui.unified.CalendarMonthInterval({
width: "100%",
select: this.handleCalendarSelect.bind(this),
}),