Is there any onClick (execute) of qx.ui.basic.Image
?
var myImage = new qx.ui.basic.Image("myApp/image.png");
myImage.addListener("execute", function(e) {
// some action
});
Qooxdoo prompts an error:
There is no event handler for the event 'execute' on target
Is it a must to use a qx.ui.basic.Button
with Image ?