DatePicker issue on dialog

Evening,

i have created a modal that includes some datepicker components but it seems that when you try configure a date the actual UI element is behind the modal and not accessible by the user. working fine if it is a page, just when its in modal (not the radzen modal). any thoughts?

cheers

so i found another post which detailed the answer. if anyone gets stuck head over to your site.css file located within the wwwroot folder > css and append the file to add in :

.ui-datepicker {
z-index: 2000 !important;
}

this worked straight away for me

This seems to have been changed in the 3.1.0 version. The following worked for me.

.rz-datepicker {
z-index: 2000 !important;
}

1 Like