selectedRange property
PickerDateRange?
get
selectedRange
selected date range in the SfDateRangePicker.
It is only applicable when the selectionMode
set as
DateRangePickerSelectionMode.range for other selection modes this
property will return as null.
Implementation
PickerDateRange? get selectedRange => _selectedRange;
set
selectedRange
(PickerDateRange? range)
Selects the given date range programmatically in the SfDateRangePicker by checking that the range of dates falls in between the minimum and maximum date range.
Note: If any date range selected previously, will be removed and the selection will be drawn to the range of dates set to this property.
If it is not null
the widget will render the date selection for the
range set to this property, even the
SfDateRangePicker.initialSelectedRange is not null.
It is only applicable when the selectionMode
set as
DateRangePickerSelectionMode.range.
See also:
- SfDateRangePicker.initialSelectedRange, which allows to select a range of dates programmatically initially on date range picker.
- selectedDate,which allows to select date programmatically dynamically on date range picker.
- selectedDates, which allows to select dates programmatically dynamically on date range picker.
- selectedRanges, which allows to select ranges of dates programmatically dynamically on date range picker.
- SfDateRangePicker.selectionMode, which allows to customize the selection mode with available mode options.
- SfDateRangePicker.onSelectionChanged, the callback which notifies when the selected cell changed on the the date range picker.
- SfDateRangePicker.showActionButtons, which allows to cancel of confirm the selection in the date range picker.
- SfDateRangePicker.onSubmit, the callback which notifies when the selected value confirmed through confirm button on date range picker.
- SfDateRangePicker.onCancel, the callback which notifies when the selected value canceled and reverted to previous confirmed value through cancel button on date range picker.
- Knowledge base: How to select a week
- Knowledge base: How to select previous or next dates bases on selected date
- Knowledge base: How to get the start and end date of the selected range
- Knowledge base: How to programmatically select the date
class MyAppState extends State<MyApp> {
DateRangePickerController _pickerController = DateRangePickerController();
@override
void initState() {
_pickerController.selectedRange = PickerDateRange(
DateTime.now().add(Duration(days: 4)),
DateTime.now().add(Duration(days: 5)));
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: SfDateRangePicker(
controller: _pickerController,
view: DateRangePickerView.month,
selectionMode: DateRangePickerSelectionMode.range,
),
),
);
}
}
Implementation
set selectedRange(PickerDateRange? range) {
if (DateRangePickerHelper.isRangeEquals(_selectedRange, range)) {
return;
}
_selectedRange = range;
notifyPropertyChangedListeners('selectedRange');
}