Oliver Vogel schrieb:
O.K. this is the smalest Example where the error occours. i found out that the problem is the Button INSIDE the Layout. if there is NO Lauyout or the button is outside the layout it works fine.
The bug is fixed in CVS. The problem was in QxEventManager. Sebastian
HOPE, THIS HELPS Olli window.application.main = function() { var d = application.getClientWindow().getClientDocument(); var mainLayout = new QxCanvasLayout; with (mainLayout) {set({ left: 0, top: 0, right: 0, bottom: 0 }); // komplette Fenster ausfüllen} d.add(mainLayout); var button_Prev = new QxButton("Zurueck"); with (button_Prev) { addEventListener("execute", function(e){alert("clicked");}); } mainLayout.add(button_Prev); button_Prev.setEnabled(false); }; ------------------------------------------------------- This SF.Net email is sponsored by the JBoss Inc. Get Certified Today Register for a JBoss Training Course. Free Certification Exam for All Training Attendees Through End of 2005. For more info visit: http://ads.osdn.com/?ad_id=7628&alloc_id=16845&op=click _______________________________________________ Qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
------------------------------------------------------- This SF.Net email is sponsored by the JBoss Inc. Get Certified Today Register for a JBoss Training Course. Free Certification Exam for All Training Attendees Through End of 2005. For more info visit: http://ads.osdn.com/?ad_id=7628&alloc_id=16845&op=click _______________________________________________ Qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
