This question is locked. New answers and comments are not allowed.
I'm using a datepicker on a Jquery-UI dialog and the calendar appears behind the dialog.
I've set the z-index of the dialog to be 0. I tried both htmlattributes and Inputhtmlattributes z-index, and still no luck. The input box appears fine, but when i click on the button for the calendar, it's hidden.
Here's my call:
| <%= Html.Telerik().DatePicker() |
| .HtmlAttributes(new{style="z-index:1000"}) |
| .Name("NewLaborHireDate") |
| .Format("yyyy-mm-dd") |
| .InputHtmlAttributes(new { style = "z-index:1000" }) |
| .ShowButton(true) |
| %> |
Thanks for your help,
Chris