Re: Onclick and ondblclick on same element

2007-10-01 Thread Federico Fanton
On Fri, 28 Sep 2007 16:43:05 +0200 Federico Fanton [EMAIL PROTECTED] wrote: My problem is that when I double click on the row three events are fired: two onclick and one ondblclick.. Is this normal? Is there a way to isolate the last event and ignore the first two? I googled some more, and

Re: Onclick and ondblclick on same element

2007-10-01 Thread swaroop belur
] For additional commands, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/Onclick-and-ondblclick-on-same-element-tf4534962.html#a12975648 Sent from the Wicket - User mailing list archive at Nabble.com

Re: Onclick and ondblclick on same element

2007-10-01 Thread Federico Fanton
On Mon, 1 Oct 2007 02:10:13 -0700 (PDT) swaroop belur [EMAIL PROTECTED] wrote: b1.setThrottleDelay(Duration.valueOf(1000)); // Make sure dbl click happens before onclick So the delay takes place *before* the first event, not after? I see.. Many thanks! :)

Onclick and ondblclick on same element

2007-09-28 Thread Federico Fanton
Hi everyone! I fear this isn't strictly Wicket-related, but I'm having a little problem with a table row having two associated events: onclick and ondblclick. Onclick should highlight the row, while Ondblclick should jump to another page passing along information about the selected row.. My