Announcement

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

    focus/mouseup issue

    In IE or Chrome, run the testcase below:

    1. From right to left highlight the value in the text field.
    2. Keep the mouse down but drag towards the select field so that the dropdown icon looks like it has focus then release the mouse button. You'll see the dropdown list is shown.


    1. From left to right highlight the value in the text field.
    2. Keep the mouse button down and drag over the checkbox then release the mouse button. You'll see the checkbox value change.

    Reproduceable in build 2012-02-03

    Code:
    isc.DynamicForm.create({
      top:500,
      numCols: 3,
      width: 500,
      titleOrientation: "top",
      colWidths: [100,100,100],
      fields: 
      [{title: "Select Field", type: "SelectItem", valueMap: ["A", "B", "C"]},
       {title: "Text Field", type: "text", defaultValue: "Hello"},
       {title: "Check Box", type: "CheckboxItem", defaultValue: true}
      ]
    })

    #2
    Just a quick update to let you know we see the issue. This looks to be a longstanding one. We've scheduled someone to take a look and will update this thread when we have a resolution.

    Thanks
    Isomorphic Software

    Comment


      #3
      Thanks for the report - we've addressed this in 8.2p and 8.3d and the fix will appear in nightlies from Feb 11

      Comment


        #4
        Confirmed fixed in Feb 14 build

        Comment

        Working...
        X