Solved

Only allow certain dates to be selected in Nintex forms

  • 16 May 2022
  • 1 reply
  • 57 views

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.

 

 

icon

Best answer by Nunezma 16 May 2022, 16:34

View original

1 reply

Badge +11

@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;}


 


 



 


 

Reply