Re: [qooxdoo-devel] ComboBox re-building problem

2008-08-18 Thread Kanugula
Thank you for correcting me. It worked. Thanks. Kanugula. Kanugula wrote: > > Thanks Jim. > > I tried your solution cbx.execute(). > > I registered "click" event. > cbx.addEventListener("click", function(evt) {alert("1");}); > > Until I click it with a mouse, it is not firing "click" even

Re: [qooxdoo-devel] ComboBox re-building problem

2008-08-18 Thread Derrell Lipman
On Mon, Aug 18, 2008 at 3:07 PM, Kanugula <[EMAIL PROTECTED]>wrote: > > Thanks Jim. > > I tried your solution cbx.execute(). > > I registered "click" event. > cbx.addEventListener("click", function(evt) {alert("1");}); > > Until I click it with a mouse, it is not firing "click" event. I want to >

Re: [qooxdoo-devel] ComboBox re-building problem

2008-08-18 Thread Kanugula
Thanks Jim. I tried your solution cbx.execute(). I registered "click" event. cbx.addEventListener("click", function(evt) {alert("1");}); Until I click it with a mouse, it is not firing "click" event. I want to simulate clicking on it without clicking it. Any idea? Thanks. Kanugula.

Re: [qooxdoo-devel] ComboBox re-building problem

2008-08-15 Thread Jim Hunter
Change the event to the 'execute' method then you can call cbx.execute() to represent a 'click' Jim On Fri, Aug 15, 2008 at 8:01 AM, Kanugula <[EMAIL PROTECTED]>wrote: > > Any ideas? > > As an automated workk-around to fire "click" event on GroupBox, how can > fire > that event. > > The follo

Re: [qooxdoo-devel] ComboBox re-building problem

2008-08-15 Thread Kanugula
Any ideas? As an automated workk-around to fire "click" event on GroupBox, how can fire that event. The following code is not firing the "click" event on GroupBox. What is wrong? cbx.createDispatchEvent(qx.event.type.MouseEvent); Thanks. Kanugula. Kanugula wrote: > > Hi, > > I reuse ComboB

[qooxdoo-devel] ComboBox re-building problem

2008-08-14 Thread Kanugula
Hi, I reuse ComboBox by injecting the List based on the user input. Whenever an item is selected from the list, it remebers the old value from ComboBox.getSelected().getValue(). As a workaround to this, I click on the ComboBox to expand the list, guessing that it is expecting an onclick event. Th