I have created a ModalPopUp Extender with a RadDatePicker on it. I've run into a problem, though, when you try to pick a date, the calendar comes up behind the modal window rather than on top and you cannot pick a date.
Any thoughts on how to correct this situation would be appreciated. Below is my markup.
<
div
id
=
"divConfirmIDES"
runat
=
"server"
>
<
div
id
=
"divP3ProfileDate"
runat
=
"server"
>
<
div
class
=
"PopupHeader"
>
<
asp:Label
ID
=
"Label1"
runat
=
"server"
Text
=
"P3 Update Profile Date"
></
asp:Label
>
</
div
>
<
div
class
=
"floatLeft"
>
<
label
for
=
"rdpPanelP3ProfileDate"
>P3 Profile Date:</
label
>
<
telerik:RadDatePicker
ID
=
"rdpPanelP3UpdateDate"
runat
=
"server"
>
<
Calendar
runat
=
"server"
ShowRowHeaders
=
"false"
>
<
SpecialDays
>
<
telerik:RadCalendarDay
Repeatable
=
"Today"
Date
=
""
IsToday
=
"true"
>
<
ItemStyle
CssClass
=
"rcToday"
/>
</
telerik:RadCalendarDay
>
</
SpecialDays
>
</
Calendar
>
<
DateInput
runat
=
"server"
DateFormat
=
"dd MMM yyyy"
EmptyMessage
=
"DD MMM YYYY"
/>
</
telerik:RadDatePicker
>
</
div
>
<
div
class
=
"formRow"
>
<
asp:Label
ID
=
"Label2"
runat
=
"server"
Style
=
"font-weight: bold"
Text
=
'By clicking "Save", you are confirming that the P3 Profile Date is correct.'
></
asp:Label
>
</
div
>
<
div
class
=
"formRowNoBorder"
>
<
div
class
=
"floatRight"
>
<
asp:LinkButton
ID
=
"btnOkP3Date"
runat
=
"server"
OnClick
=
"btnOkP3Date_Click"
CssClass
=
"silverButton"
><
span
>Ok</
span
></
asp:LinkButton
>
<
asp:LinkButton
ID
=
"btnCancelP3Date"
runat
=
"server"
CausesValidation
=
"false"
CssClass
=
"floatRightLink"
><
span
>Cancel</
span
></
asp:LinkButton
>
</
div
>
</
div
>
</
div
>
</
asp:Panel
>
<
ajaxtoolkit:ModalPopupExtender
ID
=
"mpeConfirmIDES"
runat
=
"server"
BackgroundCssClass
=
"modalBackground"
DropShadow
=
"true"
TargetControlID
=
"btnFakeConfirmIDES"
PopupControlID
=
"pnlConfirmIDES"
CancelControlID
=
"btnCancelIDES"
>
</
ajaxtoolkit:ModalPopupExtender
>