For a form made up of multiple checkbox's, clicking quickly between checkboxes doesn't hit the handleClick function.
Test case;
Clicking quickly between the 6 checkboxes will show gaps in the console log.
My problem is that I am handling the handleClick event to send a notification to the server.
I also notice that (at least on Chrome when the focus outline is shown) when it it goes wrong the focus outline remains on the previous checkbox, perhaps this is indicative of the problem.
Problem occurs using following browsers:
Google Chrome 19.0.1084.56 m
Firefox 12.0
Internet Explorer 9
SmartClient Version: v8.2_2012-04-08/LGPL Development Only (built 2012-04-08)
Test case;
Code:
isc.CheckboxItem.addProperties({ handleClick: function () { console.log("handleClick:" + this.title); return this.Super("handleClick", arguments); } }); isc.DynamicForm.create({ fields: [ { title: "Checkbox1", type: "boolean" }, { title: "Checkbox2", type: "boolean" }, { title: "Checkbox3", type: "boolean" }, { title: "Checkbox4", type: "boolean" }, { title: "Checkbox5", type: "boolean" }, { title: "Checkbox6", type: "boolean" } ] })
My problem is that I am handling the handleClick event to send a notification to the server.
I also notice that (at least on Chrome when the focus outline is shown) when it it goes wrong the focus outline remains on the previous checkbox, perhaps this is indicative of the problem.
Problem occurs using following browsers:
Google Chrome 19.0.1084.56 m
Firefox 12.0
Internet Explorer 9
SmartClient Version: v8.2_2012-04-08/LGPL Development Only (built 2012-04-08)
Comment