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
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
>
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.
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
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
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