Hello,
i would like to limit the date picker so the user can choose only as dates within a one month range is possible?
Solved! Go to Solution.
Hi @Jeziel_Victor,
Have you solved your problem?
Do you want to force the user to choose the date only among a month?
Could you please tell me that how you configure this one month range?
I assume that you have 2 separate Date Pickers and you want the dates selected to be among a month, right?
I have made a simple test for you, please take a try as below.
Set the OnSelect property of the second date picker as below:
If(
Month(DatePicker_EndDate.SelectedDate) <> Month(DatePicker_StartDate.SelectedDate),
Notify(
"Please keep the selected date within a same month!",
Error
)
)
If you just have a single date picker and you want to achieve this, please try as below:
If(
Month(DatePicker.SelectedDate) =9,// Custom the month as you expect
Notify(
"Please keep the selected date within a month!",
Error
)
)
In addition, not sure where do you want to configure this function, if you really want to configure this in Portal, please check the reply from @OliverRodrigues.
Hi, please take a look at this article: https://www.netwoven.com/2019/04/16/how-to-add-date-range-filter-controls-in-entity-list-in-dynamics...
Power Pages Super User | MVP
Hi @Jeziel_Victor,
Have you solved your problem?
Do you want to force the user to choose the date only among a month?
Could you please tell me that how you configure this one month range?
I assume that you have 2 separate Date Pickers and you want the dates selected to be among a month, right?
I have made a simple test for you, please take a try as below.
Set the OnSelect property of the second date picker as below:
If(
Month(DatePicker_EndDate.SelectedDate) <> Month(DatePicker_StartDate.SelectedDate),
Notify(
"Please keep the selected date within a same month!",
Error
)
)
If you just have a single date picker and you want to achieve this, please try as below:
If(
Month(DatePicker.SelectedDate) =9,// Custom the month as you expect
Notify(
"Please keep the selected date within a month!",
Error
)
)
In addition, not sure where do you want to configure this function, if you really want to configure this in Portal, please check the reply from @OliverRodrigues.
Good afternoon it worked, but I need you not to allow selecting a date longer than 3 months!
User | Count |
---|---|
3 | |
1 | |
1 | |
1 | |
1 |