Version: SmartClient_v82p_2013-02-28
Browser: IE/FF/Chrome
Run the test case provided. Click on "Show Window". Click on the first field. Now try to tab out - does not work. Note that we started noticing this issue in Build 2013-02-22 - not sure if it was broken in 2013-02-21 - but it was definitely NOT broken in 2013-01-28
Browser: IE/FF/Chrome
Run the test case provided. Click on "Show Window". Click on the first field. Now try to tab out - does not work. Note that we started noticing this issue in Build 2013-02-22 - not sure if it was broken in 2013-02-21 - but it was definitely NOT broken in 2013-01-28
Code:
isc.IButton.create({ ID: "touchButton", width: 120, title: "Touch This" }); isc.Label.create({ left: 150, height: 20, contents: "<a href='http://www.google.com' target='_blank'>Open Google</a>" }); isc.IButton.create({ title: "Show Window", top: 35, left: 75, click : function () { touchButton.setTitle("Can't Touch This"); modalWindow.show(); } }); isc.Window.create({ ID: "modalWindow", title: "Modal Window", autoSize:true, autoCenter: true, isModal: true, showModalMask: true, autoDraw: false, closeClick : function () { touchButton.setTitle('Touch This'); this.Super("closeClick", arguments)}, items: [ isc.DynamicForm.create({ autoDraw: false, height: 48, padding:4, fields: [ {name: "field1", type: "text"}, {name: "field2", type: "text"}, {name: "field3", type:"text"} ] }) ] });
Comment