double-click

HTML Double Click Selection Oddity

I didn't post this on DocType because it's not really a design thing, the visual representation isn't my problem, the behaviour is. I'm sorry if this is misplaced but I don't feel it's a designer issue. The following DOM: <ul style="overflow: hidden;"> <li style="float: left;"><strong>SKU:</strong>123123</li> <li style="float: le...

What's the "Find Result" Control Visual Studio Integrated?

Hi, I am developing a simple Windows Application in C# and Visual Studio 2005. I need a search result control - just like visual studio integrated by itself. After I double click each line to trigger the individual event. I tried multi-line textBox Control, but whole the box can only support one click event. thank you. ...

Add a DoubleClickHandler to a FixedWidthGrid

Hello so I got a FixedWidthGrid table which is made from a pagingtable FixedWidthGrid dataTable = x.getDataTable(); I could add alot of handlers to the dataTables rows like selected or sort policies. but I cant add a double click handler ... any idea's ?! thank you I do have a class which I made to try to add a double click hand...

Cannot cause $(this).find("a").click(); to fire using JQuery

Hi Everyone, I have a small question which should be very easy for the jquery experts out there. I am trying to follow http://aspdotnetcodebook.blogspot.com/2010/01/page-languagec-autoeventwireuptrue.html to be able to perform an action on gridview row double click. I can redirect to another page fine (as shown in the example) but I ca...

MVVM: Difference using EventToCommand vs. Attached Behaviour for Events

Hello, doing a doubleclick on a wpf selector like datagrid I can use a DoubleClickSelectedBehaviour like Sacha Barber has done in his cinch framework or I can use the EventToCommand class from the mvvm light toolkit framework. Both seem to pass the EventArgs and violate mvvm by putting View related stuff into the ViewModel what is...

Double clicking on map annotations

I want to zoom in on an annotation after double clicking on it, but I cant seem to find a method in the developer documentation that does this, So how do I zoom in on a double clicked annotation? ...

VB.NET-Grid double click fires on single click

Hi all, Ok, here is a weird VB.NET Grid problem. I am sure it is really simple, but it doesn't make sense to me. I have a grid that displays data from a binding source. I have a method to handle the CellContentDoubleClick which will get the value of the cell and use that to do a new look up. This will generate a new datasource (with...

Problem with SIngle and Double click events in canvas

Hi, I have a Canvas which is present in a usercontrol, I have attached the DoubleClick event to this user control like this mainWindow.CanvasLayout.MouseDoubleClick += new MouseButtonEventHandler(CanvasLayout_MouseDoubleClick); I am usign this event handler to achieve fullscreen functionality. Now, canvas can have various controls...

flex tree selection color just on double click

How could i disable the selection color on single click and enable it just to double click. ...

JQuery: How to detect clicks from icons inside li?

I have an icon inside a list, id like to just be able to detect the double click on the icon - so i can delete the list, how is this possible (JQuerry Sortable) $("#roleList").dblclick(function(e) { var text = $(e.target).html(); $(e.target).fadeOut('slow', function() { $("#deleteList").append(e.t...

Create a deadzone within a jQuery clickable area

With jQuery, jQuery-ui and one of the ui themes (I quite like lightness) included (bear with me, there is a question at the bottom which you can skip to if you like, just wanted to show how I got to where I am) (sorry if there are any mistakes or bits I have missed out in the code, it does work, but was cutting up the code for ease of ...

Handling double click events on ListBox items in C#

I am trying to do something when double clicking an item in a ListBox. I have found this code for doing that void listBox1_MouseDoubleClick(object sender, MouseEventArgs e) { int index = this.listBox1.IndexFromPoint(e.Location); if (index != System.Windows.Forms.ListBox.NoMatches) { MessageBox.Sh...

i want to detect an item double click in a winforms listbox control. [how to handle click on blank area?]

well i have a listbox with some items inside. i want to detect a double click on an item. currently the method i am using have a problem that if a user double click on an empty spot the currently selected item is signaled as double clicked. Update: Please note that this question is not as easy as it seems at first. also note that Timw...

AS3 DoubleClick question

Hey Guys, Has anyone got movieclip with nested clips to have a doubleclick = true; property working. The only way I could get it to work was by setting mouseChildren to false which I need to be true!! Any leads/ideas would be welcomed! J ...

DFP: How to show variable number of ads based on a page's length

First, I'm talking about Double Click for Publishers, formerly known as Google Ad Manager (GAM). Some sites I manage use a fluid layout, and therefore, depending on a browser's width, the page's height can vary. This translates into more or less ad real estate. I am taxed with the chore of maximizing ad display: On pages with little c...

C# PropertyGrid DoubleClick event capture

For a project I am working on, I have some values in a PropertyGrid that are many lines long. I want the user to be able to double-click a value in the grid, which will bring up my custom UI window. I already have it set up so that the UI works when the [...] button is clicked, but I also need it to show up directly if any grid item is...

Double click to return to home page...

Is there a jquery plugin for double clicking anywhere in a nuetral area to return to the home page? Double click for a home page link? Many thanks. ...

jQuery click event, ignore double clicks

I have a simple jQuery animation that moves a div to the right or left, upon a .click() event. However, if the user clicks the event twice, it fires twice, which messes up the formatting. Here's an example of what I have: $('a#right').click( function () { if ($(this).is(':visible')) { $('#slide').animate({right: '+=257'}, 400, f...

How can I attach custom behaviour to a double click in jsTree?

I'm using the jsTree jQuery plugin and want to execute code when the user double clicks a node. I can't seem to get it to work. I found some documentation on a ondblclk event but it doesn't fire. browser.jstree( { plugins: ["themes", "json_data", "ui", "cookies"], callback: ...

Very hard to capture double tap on UIButton subclass. (time delay to capture double tap)

Im talking about two separate touches on the screen with the same finger I think i have the coding right for this. but it is almost impossible for me to actually generate a double tap on my iPad. Is it possible to increase the time interval between a single and double tap, so it is easier to trigger. I do a double tap very fast and it c...