Tagged Questions
Focus indicates the component of the graphical user interface which is currently selected to receive input.
61
votes
3answers
44k views
jQuery lose focus event
I'm trying to show up a container if a input field gets the focus and - that's the actual problem - hide the container if focus is lost. Is there an opposite event for jQuery's focus?
Some example ...
32
votes
23answers
2k views
How to keep concentrated and focused while waiting for your compiler?
When I'm working on software, I find that as soon as I have to wait more than around 6 seconds for the compiler or for the program to start (or simply for Visual Studio to process some really ...
29
votes
4answers
9k views
Is there a way to detect if a browser window is not currently active?
I have JavaScript that is doing activity periodically. When the user is not looking at the site (i.e., the window or tab does not have focus), it'd be nice to not run.
Is there a way to do this using ...
29
votes
16answers
2k views
The Attention Deficit Programmer - Tips for staying on task?
With broadband internet being what it is, and tabbed browsing, and the crazy amounts of very entertaining social information sites, and someone down the hall asking for help with the printer (combined ...
23
votes
1answer
6k views
Tutorial on How to drag and drop item from UITableView to UITableView [closed]
I've been banging my head on this one for a while and I figured it out. I want to give back to the community since I've gotten a lot of help from this website :).
I'm trying to copy an item from one ...
20
votes
11answers
14k views
WPF - Can't set focus to a child of UserControl
I have a UserControl which contains a TextBox. When my main window loads I want to set the focus to this textbox so I added Focusable="True" GotFocus="UC_GotFocus" to the UserControls definition and ...
19
votes
2answers
8k views
Selecting text on focus using jQuery not working in Safari and Chrome
I have the following jQuery code (similar to this question) that works in Firefox and IE, but fails (no errors, just doesn't work) in Chrome and Safari. Any ideas for a workaround?
...
19
votes
6answers
7k views
WPF MVVM Focus Field on Load
I have a View that has a single TextBox and a couple Buttons below it. When the window loads I want that TextBox to have focus.
If I was not using MVVM I would just call TextBox.Focus() in the ...
19
votes
5answers
5k views
WPF and initial focus
It seems that when a WPF application starts, nothing has focus.
This is really weird. Every other framework I've used does just what you'd expect: puts initial focus on the first control in the tab ...
17
votes
5answers
32k views
How to scroll to an element in jQuery?
I have done the following code in JavaScript to put focus on the particular element (branch1 is a element),
document.location.href="#branch1";
But as I am also using jQuery in my web app, so I ...
16
votes
12answers
26k views
How Do I Give a Textbox Focus in Silverlight?
In my Silverlight application, I can't seem to bring focus to a TextBox control. On the recommendation of various posts, I've set the IsTabStop property to True and I'm using TextBox.Focus(). Though ...
14
votes
1answer
5k views
WPF: Remove dotted border around focused item in styled listbox
I have a horizontal listbox with a custom controlIemplate. The selected item gets a dotted frame when focused. Anyone know how to get rid of it?
12
votes
5answers
17k views
How to remove focus from a textbox in C#/WinForms
I need to remove the focus from several textboxes; I tried using:
textBox.Focused = false;
but the property is read only. I then tried setting the focus on the form, so as to remove it from all the ...
12
votes
2answers
1k views
Prevent Window Focus Change
I'm trying to help a disabled person with a small bit of code to help him play a game easier. He is limited to a trackball and a single button.
Currently he uses the onscreen keyboard and has managed ...
12
votes
5answers
24k views
How to select an element that has focus on it with jQuery
How can you select an element that has current focus?
There is no :focus filter in jQuery, that is why we can use something like this:
$('input:focus').someFunction();
11
votes
4answers
10k views
Set initial focus in an android application
In my android application it automatically focuses the first Button I have in my layout, giving it an orange outline. How can I set the initial focus preferably in XML, and can this be set to nothing?
...
11
votes
2answers
3k views
Show window in Qt without stealing focus
I'm using the Qt library to show a slideshow on the second monitor when the user isn't using the second monitor. An example is the user playing a game in the first monitor and showing the slideshow in ...
11
votes
1answer
3k views
Remove focus rectangle on a UserControl
I have a WPF UserControl with Focusable="True". It's the only focusable control in the window.
Whenever the user presses Tab or Alt (and especially when they Alt+Tab to another application), my ...
11
votes
7answers
22k views
JQuery focus
Let say i have the next markup:
<div id="content">
<div id="firstP"><p>First paragraph</p></div>
<div id="secondP"><p>Second ...
10
votes
5answers
7k views
jquery Setting cursor position in contenteditable div
The old version of the question is below, after researching more, I decided to rephrase the question. The problem as before is, I need to focus a contenteditable div without highlighting the text, ...
9
votes
2answers
872 views
Camera focus distances
I'm trying to read the focus distance (distance of subject in a photo) from an Android camera. I keep getting 0 for all focus distances on my HTC Desire even when it correctly autofocuses. Here's the ...
9
votes
4answers
7k views
WPF - Set Focus when a button is clicked - No Code Behind
Is there a way to set Focus from one control to another using WPF Triggers?
Like the following example:
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
9
votes
8answers
9k views
Set focus on textbox in WPF from view model (C#) & wPF
I have a TextBox and a Button in my view.
Now I am checking a condition upon button click and if the condition turns out to be false, displaying the message to the user, and then I have to set the ...
8
votes
4answers
3k views
WPF-MVVM: Setting UI control focus from ViewModel
What is a good practice of setting control focus in MVVM architecture.
The way I envision it, is with a property on the ViewModel that would trigger a focus change when needed. And than have the UI ...
8
votes
3answers
487 views
Visual Studio: How to stop breakpoint hit from stealing focus?
When a breakpoint is hit in Visual Studio, it steals the focus from whatever other application the programmer is viewing/typing into at that moment. This can be very irritating since VS grabs any ...
8
votes
2answers
2k views
How to detect when a tab is focused or not in Chrome with Javascript?
I need to know if the user is currently viewing a tab or not in Google Chrome. I tried to use the events blur and focus binded to the window, but only the blur seems to be working correctly.
...
8
votes
2answers
4k views
Which HTML elements can receive focus?
I'm looking for a definitive list of HTML elements which are allowed to take focus, i.e. which elements will be put into focus when focus() is called on them?
8
votes
18answers
687 views
Tips to keep focused during code reviews
I often get sent to sites where I need to do a code review of a system I am not involved in, and once reviewed won't be involved in again. I spend time during the usual tool tests and looking for ...
8
votes
3answers
2k views
How to achieve focus-reset to update BindingSource of TextBox before any action
I have observed some unexpected or at least not-perfectly-matching-my-needs behaviour of textboxes bound to textproperties when I can't use using UpdateTrigger=PropertyChanged for my binding. Probably ...
8
votes
2answers
365 views
how to get focus-follows-mouse over buffers in emacs?
Suppose I have a source file open and I launch a shell. I can hit C-x o to switch between the two buffers. But how can I get it so that when I move the mouse the buffer under the mouse gets focus, ...
8
votes
4answers
6k views
Why does a WPF Popup close when its background area is clicked?
I have a WPF Popup control that contains some editing controls (list boxes, text boxes, check boxes) laid out with quite a bit of whitespace.
Popup.StaysOpen is set to False, which is required. If ...
8
votes
7answers
8k views
WPF Validation Not Firing on First LostFocus of the TextBox
I am trying to validate the WPF form against an object. The validation fires when I type something in the textbox lose focus come back to the textbox and then erase whatever I have written. But if I ...
7
votes
2answers
214 views
Use ListBox within Focus Scope
Short story: A ListBox inside a focus scope doesn't allow an item to be selected.
Long story:
I am trying to make a context-sensitive widget for data entry. I have the main panel with several ...
7
votes
4answers
705 views
How do I prevent WPF buttons from remaining highlighted after being clicked?
When a standard WPF button is clicked, it gets highlighted in blue (probably using the blue color from whatever Windows theme is set), and it stays highlighted until you interact with any other ...
7
votes
3answers
563 views
How to use window focus messages for a Delphi on-screen keyboard form
I need a built-in on screen numeric keypad in my Application. For various reasons I cannot use the TMS Software or other commercial component offerings. I'm very happy with a button-based solution ...
7
votes
1answer
3k views
Disable android orange outline higlight on focus
I am coding an app using jQuery, jqTouch and phonegap and have run across a persistent problem which arises when a user submits a form using the Go button on the soft keyboard.
Although it is easy to ...
7
votes
4answers
2k views
WPF: How to programmatically remove focus from a TextBox
I want to add a simple (at least I thought it was) behaviour to my WPF TextBox.
When the user presses Escape I want the TextBox he is editing to have the text it had when the user started editing, ...
7
votes
1answer
3k views
Detecting a control's focus in Silverlight
Is there any way to tell whether a control (specifically a System.Windows.Controls.TextBox) is focused in Silverlight? I'm looking for something like the following (what you would see in a regular ...
7
votes
2answers
3k views
Prevent WebBrowser control from stealing focus?
Is there a way to stop the WebBrowser control from causing its parent form to bring itself to the front?
If you use the InvokeScript method to invoke a JavaScript function that calls focus() on an ...
7
votes
8answers
34k views
Set focus to field in DIV
What is the proper method to set the focus to a specific field within a dynamically loaded DIV?
$("#display").load("?control=msgs"); // loads the HTML into the DIV
$('#display').fadeIn("fast"); // ...
7
votes
10answers
3k views
Keyboard focus being stolen by Flash [closed]
Performing a search, I noticed several questions dedicated to how to steal/trap the keyboard focus of the visitor. Considering this site is dedicated to programming that's not suprising. I was ...
7
votes
6answers
22k views
Winforms c# - Set focus to first child control of tab page
Say I have a Textbox nested within a TabControl.
When the form loads I would like to focus on that textbox (by default the focus is set to the tabControl).
Simply calling textbox1.focus() in the ...
6
votes
1answer
142 views
Delphi XE - TRibbon actions always send focus to MainForm
When I place a TRibbon control on a form that is not the MainForm of the application, that TRibbon's actions (i.e. Cut, Paste) will always return focus to the MainForm after the action is executed.
...
6
votes
2answers
687 views
Setting focus to a control in WPF using MVVM
I want keyboard focus to be set to a TextBox when I click a Button on my view. I don't want to use any codebehind, so wondered if anyone had written an attached property or similar solution?
6
votes
5answers
199 views
Alter text field focus order with jQuery
I was wondering, if I have text fields displayed so, could I alter the order in which the focus using javascript (preferably jQuery).
See this example here.
What I mean that when you tab around ...
6
votes
1answer
1k views
Panel not getting focus
I am continuing to program some kind of keyboard navigation in my simple graphic program (using C#). And I ran into trouble once again.
My problem is that I want to process the keyboard input to ...
6
votes
8answers
584 views
How not to lose focus on a login page
I have a simple login form with 2 input fields: "username" and "password".
"username" field is focused by default. The problem is that when user clicks outside "username" or "password" fields, the ...
6
votes
1answer
4k views
How do i set focus to a text box Html.TextBoxFor - mvc 2
I'm trying to set focus on a text box which generated in the following way:
<%=Html.TextBoxFor(model => model.Email, new { style = "width:190px;Border:0px", maxsize = 190 })%>
i tried to use ...
6
votes
2answers
2k views
MVVM Focus To Textbox
How would I set focus to a textbox without specifying the name for that textbox? At the moment I am doing the following
<Window FocusManager.FocusedElement="{Binding ElementName=Username}">
...
6
votes
2answers
906 views
Make a form not focusable in C#
I'm wanting to write a virtual keyboard, like windows onscreen keyboard for touchscreen pcs.
But I'm having problem with my virtual keyboard stealing the focus from the application being used. The ...