具有多个日期选择的日期选择器
Date Picker with multiple dates selection
我正在开发 Nativescript 应用程序,我需要 从日期 到 到日期 (日期范围)。我尝试实施 RadCalendar 但我找不到用于多个日期选择或日期范围选择的方法或属性。
下面是我的 XML 日历视图代码
<Page xmlns="http://www.nativescript.org/tns.xsd"
xmlns:calendar="nativescript-telerik-ui-pro/calendar"
showingModally="onLoaded">
<StackLayout id="calendarModal" width="90%" height="65%" horizontalAlignment="center" verticalAlignment="center" backgroundColor="white" opacity="1">
<StackLayout class="popup-wrapper">
<calendar:RadCalendar id="calendar" dateSelected="onDateSelected" />
</StackLayout>
</StackLayout>
</Page>
谢谢。
我使用了 selectionMode
属性。 Reference
其他可用选项是
- 多个
- None
- 范围
- 单身
XML
<calendar:RadCalendar id="calendar" dateSelected="onDateSelected" selectionMode="Range" />
我正在开发 Nativescript 应用程序,我需要 从日期 到 到日期 (日期范围)。我尝试实施 RadCalendar 但我找不到用于多个日期选择或日期范围选择的方法或属性。
下面是我的 XML 日历视图代码
<Page xmlns="http://www.nativescript.org/tns.xsd"
xmlns:calendar="nativescript-telerik-ui-pro/calendar"
showingModally="onLoaded">
<StackLayout id="calendarModal" width="90%" height="65%" horizontalAlignment="center" verticalAlignment="center" backgroundColor="white" opacity="1">
<StackLayout class="popup-wrapper">
<calendar:RadCalendar id="calendar" dateSelected="onDateSelected" />
</StackLayout>
</StackLayout>
</Page>
谢谢。
我使用了 selectionMode
属性。 Reference
其他可用选项是
- 多个
- None
- 范围
- 单身
XML
<calendar:RadCalendar id="calendar" dateSelected="onDateSelected" selectionMode="Range" />