Focus indicates the component of the graphical user interface which is currently selected to receive input.
3
votes
0answers
93 views
Floating window and Ribbon integration with keyboard navigation
I am working on an MDI application that has a ribbon and also supports docking/floating windows. I have troubles to keep the focus on the last floating window while accessing some commands on the ...
3
votes
0answers
913 views
Accessible full width dropdown menu with Jquery hover, focus and blur
I have a full-width drop-down menu that shows all submenu's on hover or on getting focus (to make it keyboard-accessible). It's a menu you see often, but keyboard accessibility I haven't found ...
2
votes
0answers
62 views
Focus not returning to CView after dismissing Message box
Within a derived CView class' method, I am calling the CWnd's MessageBox method. This is a docked view, not an MDI child. Upon return from MessageBox, focus goes to the Active MDI child, not back to ...
2
votes
0answers
108 views
Focus-follows-mouse conflicts with Resharper navigation
In Windows 7, you can give focus to a window just by hovering over it with the mouse. This feature is not enabled by default, but you can enable it in the Control Panel. (Here is the path to take:
...
2
votes
0answers
145 views
iOS6 safari keyboard closes when javascript changes focus to another input
Currently I am working on a web app for mobile devices where I am using javascript events to move the focus from one contenteditable div to another. On most mobile devices, everything is fine and the ...
2
votes
0answers
100 views
java popup menu has no focus with VK_CONTEXTMENU
I am incorporating a popup menu in my java application.
I have added a mouse listener to show it up and I have also registed a keyboard action with the key event KeyEvent.VK_CONTEXT_MENU, that brings ...
2
votes
0answers
130 views
On Android webview when i execute javascript the sotfkeyboard disappear
in WebView when i execute a javascript throught webview.loadUrl(), the softkeyboard disappear if visible. So when i try to type some text in html text field the softkeyboard disappear (if a javascript ...
2
votes
0answers
88 views
Android onFocusChangeListener on System Alert view
I set a onFocusChangedListener on a view and used windowmanager and added the TYPE_SYSTEM_ALERT view with addView()
However, onFocusChanged is never called even when I pulled down the notification ...
2
votes
0answers
363 views
Implementing requestFocus(View.FOCUS_DOWN) on custom keyboard in android
Some days ago I implement custom keyboard for several EditText in my application for android. Number of these EditText may vary depend on situation. In my keyboard i want to implement "Enter" key, ...
2
votes
0answers
139 views
ContextMenu difference in Focus behaviour from Menu
I would like a context menu to behave in the same way as a main menu with regards focus.
For example if keyboard focus is in a listbox and I hit F10 to take me to the main menu and navigate through ...
2
votes
0answers
170 views
BlackBerry: Hilight the background of a horizontalFieldManager
I want to hilight the background of a horizontalFieldManager when I'm scrolling. I tried this code:
public class HorizentalFocus extends HorizontalFieldManager{
protected void paint(Graphics g) {
...
2
votes
0answers
170 views
Refresh Table Adapter affects cell focus
I'm using the following code to commit cell changes to the database and calculate the value of another cell in the database. While I realize it isn't the norm to store a calculated value, I haven't ...
2
votes
0answers
483 views
Android Camera Touch Focus
I am trying to make a custom camera application I want to let the users can choose the focus mode in this application.
The focus mode is auto focus on default .
if I want to set the cameraView to be ...
2
votes
0answers
169 views
WPF - Keyboard Focus Doesn't Overlay Control
The screenshot below shows my problem. I have an ItemsControl where the DataTemplate for the items contains a CheckBox and a TextBox followed by some text. When I tab from a TextBox onto the CheckBox ...
2
votes
0answers
279 views
Interfacing with a webcam c#
So I am trying to develop a WPF app that will allow me to turn off the auto zoom and auto focus abilities of my webcam. I'm using the Emgu c# wrapper for opencv and want to be able to do frame ...
2
votes
0answers
112 views
MainWindow steels Keyboard focus from floating windows when clicked
I do have some problems with focus on WPF. Even tho focus is a common problem I couldn't find a solution that works for my problem. Here is the situation:
I have an Editor Software where I can drag ...
2
votes
0answers
191 views
Position of Keyboard Android at SoftInputMethod=AdjustPan
I'm having some big troubles with the position of the keyboard on one of my applications : i need to set my keyboard to stay under a specific TextView and not the focused one.
Here in the image an ...
2
votes
0answers
143 views
How to set focus on a row in grid in WPF
I have an edit window which pop up with a Grid.
This grid is a C1FlexGrid made by ComponentOne. (but I think that this might be a similar problem with other grids..)
I want the first row in that grid ...
2
votes
0answers
330 views
many focused pictures with one focusing in android?
I'm making an Android application that should take pictures with an interval of one second. The problem is that if you focus the picture before each picture, intervals get too long. Camera.autoFocus() ...
2
votes
0answers
339 views
How to set logical focus without giving keyboard focus?
How can I in code define the logical focus of a container, or focused child, WITHOUT giving it keyboard focus ?
I just want to control which child will get the focus when the control will get focus ...
2
votes
0answers
417 views
Problems With MouseListener
I'm writing a game in java. The problem here is I wrote my game to run in a JFrame, not thinking that i would want to add menus and a results screen and all that good stuff. The game itself runs great ...
2
votes
0answers
345 views
jQuery.focus() making an unnecessary scroll
This is my problem.
I'm creating a dialog box (jQuery.dialog) and inside it there is this grid (https://github.com/mleibman/SlickGrid).
After loading data, I need to give the focus to the grid so ...
2
votes
0answers
562 views
How do I set cursor focus to end of input after using keyup function
I got this script off 9lessons.info and it is supposed to auto suggest friends when you type an @ symbol.
The Problem is after getting name from database, the curser points to the beginning of the ...
2
votes
0answers
135 views
Andrlid ListView focus mess up
In my application, I want to implement a ListView, of each itemview is a LinearLayout with two focusable buttons in it horziontally, and each row item data loads from server in page. But it seems that ...
2
votes
0answers
596 views
Android edittext inside scrollview get auto focus
hi guys i am having the problem in a page where i have a main scrollview and inside that there are 5 edittext controls and few spinner controls. Whenever i select some value in the spinner controls, ...
2
votes
0answers
190 views
Stopping table & td elements from getting focus
In IE it seems that table & td elements will automatically receive focus on a mouse click.
Taken from
http://msdn.microsoft.com/en-us/library/ms534654%28VS.85%29.aspx
The following ...
2
votes
0answers
452 views
jQuery .live() check (with focus/blur)
I know that focus and blur events don't work with .live() before jQuery 1.4.1. A mod was posted here that allows focus/blur events to be used with .live() for older jQuery versions.
I'm writing a ...
2
votes
0answers
414 views
Android Development: Keep EditText Selection Highlight On Lose Focus?
I was wondering if it's possible to keep an EditText's orange highlight around selected text when the EditText loses focus, until the user changes the selection?
I'm creating a find/replace feature ...
2
votes
0answers
554 views
How to programmaticaly check if a text input box inside a web page loaded in WPF Browser has focus?
In case my question wasn't all that much self explanatory, here's exactly what I'm trying to do:
I have a C# WPF app that uses a WPF web browser control to show some website.
The app is running on a ...
2
votes
0answers
638 views
can't populate listview based on selected spinner item. getting Window already focused, ignoring focus gain of
I have a spinner that displays a list of classes a user is enrolled in. After the user selects a class, they press a "search" button which pulls up a list of studygroups they can join for that class.
...
2
votes
0answers
363 views
How to focus in WPF with WindowsFormHost
I have this simple setup:
<StackPanel>
<TextBox Text="wpf1" PreviewLostKeyboardFocus="TextBox_PreviewLostKeyboardFocus" />
<TextBox Text="wpf2" ...
2
votes
0answers
688 views
Chrome resets the textarea scroll bar (scrollTop) when focus is called
Chrome (7.0.517.41 beta) (sometimes?) resets a textarea's scroll bar (scrollTop) when you call focus. Does anyone know if this behavior is deliberate, a known bug, or neither?
It seems quite ...
2
votes
0answers
185 views
How can I set the initially focused element without activating the window (WPF)?
My program creates a window with ShowActivated=false, so that it doesn't steal keyboard focus when it's opened (the window is created in response to events coming over the network). I want to be able ...
2
votes
0answers
224 views
Focus on item in the jcarousel
I've a page with a jcarousel, the carousel contains n items linked to other pages.
I'm trying to keep on focus the clicked item also in the new page.
Thanks in advance
Luca
2
votes
0answers
260 views
Managing browser window focus
Parent window opens a child window.
User toggles to Parent window.
Can a button/link in the Parent window bring the child window into focus? (I tried a quick and dirty test and it worked in Safari ...
2
votes
0answers
3k views
Unable to set focus on a ListboxItem
I have a listbox whose ItemSource property is bound to a ViewModel. This ViewModel has an ICollectionView property which is a collection of custom objects. I am loading this collection view as a tree ...
1
vote
0answers
18 views
Move caret after a MoveFocus() call
I am attempting to manually control traversal of a number of TextBoxes in a (WPF) Window. I am successfully using (this is within a PreviewKeyDown handler):
if (<logic>)
{
...
1
vote
0answers
42 views
Stubborn WinForm loses focus and doesn't regain it
I have a form with a splitview container. The left side is a devex GridView and the right side is just a regular view. I drag-drop text from the GridView to the view at the right hand side. To ...
1
vote
0answers
85 views
Keep listening for jquery keydown events regardless of focus
The Situation
I am building a basic slide deck in HTML, CSS & Javascript. Its based on the jquery cycle plugin. The slides are simple li items that contain either images, text or iframes (e.g. ...
1
vote
0answers
25 views
Giving element focus doesnt seem to work when tab is in background
I am trying to scrape a webpage using javascript and firefox. On the page, the new content loads with ajax when the form inputs change. My script fills in the form input, removes focus from it, and ...
1
vote
0answers
41 views
Can't edit input after switching focus with javascript
I'm experiencing this issue on several Android devices, using JS to switch the focused field.
- While I'm inserting value, everything is going well, so once a field has reached the max-length, then ...
1
vote
0answers
151 views
Android EditText OnFocusChangeListener
does anyone know if there is possible to clean OnFocusChangeListener from EditText?
My situation is something like that:
1. I set OnFocusChangeListener for EditText
2. After a while I need to change ...
1
vote
0answers
19 views
Select specific cell at runtime
I have an UltraWinGrid and there is a test on a column to make sure the data entered does not already exists. If it exists, I show a MessageBox and I want the focus to be set on the cell again (to ...
1
vote
0answers
76 views
focus after show doesn't work
I have an input field in a text box as follows:
<div id="box_password2" style="display:none;">
<span style="float:left;margin: 10px 0px 0px 20px;">Verify password:</span> ...
1
vote
0answers
193 views
WPF ListView with DataTemplateSelector: PropertyChanged always sets focus to ListView
i'm really frustrated with this problem, but maybe it is really trivial and i just can't see where the problem is. The situation is the following:
I have a ListView that is bound to an ItemsSource. ...
1
vote
0answers
110 views
jquery click href to open dropdown chrome mobile android
on a mobile when you click the link "bring it up" this demo: http://bit.ly/10E3ScR this will bring up a dropdown menu in safari mobile (IOS) and chrome mobile (IOS) but nothing in chrome mobile ...
1
vote
0answers
105 views
jquery .focus safari & chrome mobile vs chrome mobile android
on a mobile when you click the link "bring it up" this will bring up a dropdown menu in safari mobile (IOS) and chrome mobile (IOS) but nothing in chrome mobile (android)!
i just do ...
1
vote
0answers
75 views
Desktop application needs focus when user is in metro
I have a desktop application (non metro). I need to get the user back to my application Desktop in some emergency situations (could mean life or death). How do I get focus back onto my application if ...
1
vote
0answers
40 views
How do I get to access and send I/O-device information, more specifically mouse move and click (press and release), from and to a game-client?
I am currently trying to make a program that will automatically accept a pop-up queue inside a game client. I have managed to get everything to work the way I want when not inside the client. However, ...
1
vote
0answers
88 views
Android , Admob / Adview takes|steals focus from edittext , How to prevent?
I am creating views and add these views to a linearlayout , These input is taken from edittext at the bottom of the screen like a messanger application. Whenever i push the 'done' button it triggers ...



