Hello: I am using plugin_mmodal to show a html form. This html form shows a database table which has two datatime fields.
When plugin_mmodal loads this html form and you clicks in a datetime field, calendar widget is not showed. This bug is caused by an inconsitence css parameter: z-index. plugin_mmodal has z-index value greater or equal to 1000, but calendar has this value greater or equal to 90. So that, the calendar widget is showed but it is hidden by plugin_mmodal widget. If you change the z-index value in plugin-mmodal using a value less than 90 (for example, changing 1001 by 81 and 1002 by 82) in plugin_mmodal.py, line 32, then calendar widget is showed. I hope this will be usefull. My first two cents :) . Regards

