Hi All,
I am choosing date(Start date and end date ) from datepicker and time(minute and second) from another two combobox. Now, I want add a functionality where user can select date after the start date only ? How can I achieve that?
Any help is appreciated.
Solved! Go to Solution.
@Tejasvi_munge
You can disable the 'Submit' button for your form when the end date is not greater than the start date. Put this code in the DisplayMode property of your Submit button. There is no way to restrict dates on the DatePicker control directly.
If(
(DatePicker_StartDate.SelectedDate
+ Time(Dropdown_StartHour.Selected.Value, Dropdown_StartMinute.Selected.Value, 0)) <
(DatePicker_EndDate.SelectedDate
+ Time(Dropdown_EndHour.Selected.Value, Dropdown_EndMinute.Selected.Value, 0)),
DisplayMode.Edit,
DisplayMode.Disabled
)
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
@Tejasvi_munge
You can disable the 'Submit' button for your form when the end date is not greater than the start date. Put this code in the DisplayMode property of your Submit button. There is no way to restrict dates on the DatePicker control directly.
If(
(DatePicker_StartDate.SelectedDate
+ Time(Dropdown_StartHour.Selected.Value, Dropdown_StartMinute.Selected.Value, 0)) <
(DatePicker_EndDate.SelectedDate
+ Time(Dropdown_EndHour.Selected.Value, Dropdown_EndMinute.Selected.Value, 0)),
DisplayMode.Edit,
DisplayMode.Disabled
)
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
User | Count |
---|---|
180 | |
114 | |
88 | |
44 | |
42 |
User | Count |
---|---|
226 | |
113 | |
112 | |
69 | |
67 |