Using Chrome, build 08-16-11. Click into the Reason field. Start tabbing. when you get to the radio button, you'll notice that the focus goes to the yes button, then the yes label and then it skips to the No label, completely skipping the no button.
In Firefox, the tabbing goes from the validate button to I can't even see where then eventually goes to the search bar of the browser.
In IE, the tabbing goes from the yes label to the browser search bar
In Firefox, the tabbing goes from the validate button to I can't even see where then eventually goes to the search bar of the browser.
In IE, the tabbing goes from the yes label to the browser search bar
Code:
isc.DynamicForm.create({ ID: "exampleForm", width: 250, titleOrientation: "top", fields: [ {name: "reason", type: "text", title: "Reason", validators : [{ type: "requiredIf", expression: "exampleForm.getValue('willAttend') == 'No'", errorMessage: "Please provide a reason" }] }, {name: "validate", title: "Validate", type: "button", click: "form.validate()" },{name: "willAttend", type: "radioGroup", colSpan: "*", required: true, vertical: false, valueMap: ["Yes", "No"], redrawOnChange:true, title: "Will you be attending the meeting on April 4th? If no, please provide a reason" } ] });
Comment