Hi there,
There have been a few posts requesting change freeze functionality from around 6 years ago.
It's on the roadmap for release however in the meantime it can be manually achieved by placing a field and form rule on submit with the code below.
Hopefully this will be useful to others.
- //Specify Change Freeze Dates here
- frzstart = new Date('25 Dec 2019, 00:00:00');
- frzend = new Date('29 Dec 2019, 00:00:00');
- // If change start or end dates are within the freeze window
- // the form submission will be cancelled and the user will get
- // a popup message.
- if(chgstart > frzstart && chgstart < frzend){
- alert("Within xmas change freeze");
- $CS.stopFormSubmission();
- }
- else if (chgend > frzstart && chgend < frzend){
- alert("Within xmas change freeze");
- $CS.stopFormSubmission();
- }