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