tags:

views:

34

answers:

1

I am using a modal dialog (provided by jQuery UI). Now on the dialog box there are input text boxes with class date. I want to bind Datepicker with these inputs. I've written $(".date").datepicker({ changeMonth: true, changeYear: true, dateFormat: 'dd-mm-yy', showOn: 'button', yearRange: '1970:2015', buttonImage: '../../Content/calendar.gif', buttonImageOnly: true }); in ready function. The problem is datepicker is opening in the disabled page behind the modal dialog. How can I overcome this problem?

A: 

Have you tried z-index or rearranging your DOM?

Nick Spiers