Published on
Sometimes the template and form CSS work together badly and the datepicker pops up behind some other part of the form.
You can correct this by setting the z-index in the CSS. Usually this code will fix the problem. Add it to a Load CSS action in the On Load event; or the CSS Code box on the Other Code tab in the Easy Wizard.
div.datepicker_dashboard {
z-index: 10000 !important;
}
If you are using a different class to style the datepicker then change the first line to match.

Comments: