Hi Isomorphic,
please have a look at the following testcase:
If one loads this example, then clicks the date picker of dateItem2 and selects cancel, the cursor jumps in the textbox of dateTimeItem. Could You please look at this? Our app is also affected by this behaviour.
Tested on :
Google Chrome (Version 69.0.3497.100) in responsive mode (iPhone 6/7/8)
Motorola Moto G4
iPhone 6s Plus
Kind Regards
please have a look at the following testcase:
Code:
isc.DynamicForm.create({ ID: "dateForm", width: "100%", titleAlign: "top", fixedColWidths: true, colWidths: [100, "*"], isGroup: true, groupTitle: "Date Controls", fields : [{ name: "dateItem", title: "Date", editorType: "DateItem" }, { name: "dateItem2", title: "Date", editorType: "DateItem", useTextField: true }, { name: "spinnerItem", title: "Select", editorType: "SpinnerItem", }, { name: "dateTimeItem", title: "Datetime", editorType: "DateTimeItem", type: "datetime", useTextField: true }, { name: "timeItem2", title: "Time", editorType: "TimeItem", useTextField: false }, { name: "mdri", title: "Mini Date Range", editorType: "MiniDateRangeItem" } ] }); isc.VStack.create({ membersMargin: 10, members: [dateForm] });
Tested on :
Google Chrome (Version 69.0.3497.100) in responsive mode (iPhone 6/7/8)
Motorola Moto G4
iPhone 6s Plus
Kind Regards
Comment