Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    DateItem cursor jump

    Hi Isomorphic,

    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]
    });
    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

    #2
    Thanks for the notification. We are having difficulty reproducing this problem .
    It's possible that we have some configuration difference but there have also been some recent framework changes in this area, which may have resolve the issue.
    Could you pick up the next nightly build (dated Oct 17 or above), 12.0 or 12.1d branch, and let us know if you're still seeing the problem.
    If so we'll take another look

    Thanks and regards
    Isomorphic Software

    Comment

    Working...
    X