I am developing an application using .Net. I want to implement datetime picker in my application.
$(document).ready(function(){
$('#MainContent_txtTime').datetimepicker();
});
The textbox 'MainContent_txtTime' control has been placed inside an ajax popup extender and the datetimepicker is not visible as it is opening behind the popup extender. The popup is placed inside an accordion. How could I show it above the textbox?
I have used following .css class
<style type="text/css">
#ui-datepicker-div {
z-index: 9999999;
}
</style>
It is not working. Any clue?
Thanks