Picker for event time doesn't disappear as expected

Hi,
On iOS 7 using an iPhone, the event time picker menu does not disappear if the user clicks the blue “Done” button at the top instead of the “Done” button on the picker. This results in the picker remaining on screen and covering up the UI on the create event page. Please see the screenshots below. Is there a fix for this? Also, is there a way to control the colors on the picker menu?



Hi,

try to call blur() for selects on “Done” button click:

$$(“scheduler”).$$(“done”).attachEvent(“onItemClick”,function(){
var sel = $$(“scheduler”).$$(“formCalendar”).$view.getElementsByTagName(‘select’);
for (var i = 0; i < sel.length; i++) {
sel[i].blur();
}
});