Community
Participate
Working Groups
I've seen this with button onClick and checkbox Checkbox.eze$$setInitial this.check.getOnKeyUp().appendElement(key); this.check.getOnClick().appendElement(click); this.span.getOnClick().appendElement(setFocus); key, click, and setFocus are all functions so they need to be prefixed with 'this.' If I use a button on a handler the generated code is wrong for the same reason this.listAll.getOnClick().appendElement(invokeListAllService); invokeListAllService is a function so it must be prefixed with 'this.'
verified