Hi All
Is there a way to validate the date column on the Forms.
We want to have a WFH request form that only allows a date selection between Tuesday and Thursday.
Solved! Go to Solution.
@Realming_Grape You can try this:
Add the following to the CSS section in Form settings:
.ui-datepicker-week-end {display:none !important;}
table.ui-datepicker-calendar > thead > tr > th:nth-of-type(2) {display:none !important;}
table.ui-datepicker-calendar > tbody > tr > td:nth-of-type(2) {display:none !important;}
table.ui-datepicker-calendar > thead > tr > th:nth-of-type(6) {display:none !important;}
table.ui-datepicker-calendar > tbody > tr > td:nth-of-type(6) {display:none !important;}