At the moment I have the dialog defined as :
$('#dialogCl').dialog({
autoOpen: false,
width:650,
height:550
});
And the datepicker defined inside #dialogCl
as :
$("#c").datepicker({showOn: 'button', buttonImage: 'images/calendar.gif', buttonImageOnly: true});
I need to open the datepicker but it seems it puts the datepicker under the dialog.
I found some posts here regarding that but i didnt knew where how to set the z-index of the .ui-datepicker
to 1003
programaticly