Focus indicates the component of the graphical user interface which is currently selected to receive input.

learn more… | top users | synonyms

0
votes
0answers
8 views

How to show programmatically FocusVisualStyle?

Afters attemps I could tell that the FocusVisualStyle is only activated by the keyboard (tab and arrows keys). There is an easy way to get around this problem? I found this: - focus visual not ...
0
votes
0answers
4 views

Giving a JPanel priority focus

I have a JPanel that is using a KeyListener as the content pane as the window; however, there are buttons and text fields in a grid layout on top of the JPanel. How do I prioritize the focus of the ...
0
votes
1answer
10 views

Dojo:how to find if the widget has focus in dojo

how do I find out if my custom widget has focus in Dojo? i have dojo editor i wnat to know if the editor has already focus or not?
0
votes
0answers
21 views

Custom View stealing focus from Button

This is my xml file for the layout. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/idtop" ...
1
vote
1answer
29 views

jQuery Mobile Select input text on focus

I'm using jQuery mobile, I now want to make an input text field to be highlighted when tapped. I'm using this: $(document).ready(function() { $('.highlight').focus(texty_focus); }); function ...
0
votes
0answers
10 views

Android WebKit focused textarea won't draw background image

Android WebKit draws a white background + border on a textareas and inputs when they have focus. How do I stop it from doing that? I've tried changing -webkit-tap-highlight-color, ...
0
votes
1answer
24 views

Js-jQuery - check if element is focused or get last focused element class

is it possible to check if an element is focused? i tryed: <a href="#"></a> $('a').is(':focused'); but it won't work. Also i would like to understand if is possible to get the ...
2
votes
2answers
27 views

On button click slide and focus on search input in jquery mobile

I have made this UI with jquery mobile, here i am doing is on button click a search input slide down for search... and likewise it will focus on the input box... This is the script i am using, ...
0
votes
2answers
38 views

Changing focus from on textbox to another, when tabpages is changed in C#?

I have several tabs in a form. Each tab has one textbox. When I enter tabpage1 I have managed to set the focus on the textBox1. When I press a button in tabpage1 I jump to a random tab in the ...
0
votes
0answers
30 views

Why can't my button gain focus unless I click another button first?

I have 5 buttons on my activity, one of which is a close button to finish() the activity. Clicking it does nothing unless I click one of the other buttons first and then click it. I'm assuming the ...
-5
votes
0answers
69 views

How Do I intercept a key command when my program doesn't have focus? [closed]

I am using c# to try to intercept when the "C" key is pressed and want my program to work when it is not in context, or focus. Here is my WPF C# code: public MainWindow() { ...
-1
votes
0answers
28 views

Why the fragment is not working properly? [closed]

I have a menu with fragments. 1 fragment is a barcode scanner fragment. In the onListItemClick for the option coresponding to this fragment i replace the default framelayout with this fragment. The ...
0
votes
0answers
31 views

requestFocus() not working with show() method

I'm making a game where the program has to show one panel, and from that panel show the previous panel, and then show the first panel again. To make things simpler, let's say we have PanelA and PanelB ...
0
votes
1answer
40 views

KeyListener wont focus

I'm new to Java so please forgive me asking for help, but after 4 hours of searching for a solution I'm really getting desperate. I'm currently setting up a game and want to implement key controls. I ...
0
votes
2answers
41 views

Underline transition in menu

I have a menu with a lava-lamp like underline that looks like this: The underline slides between links when clicking on them. Try a jsfiddle HERE. My only problem is that if you click outside the ...
0
votes
2answers
36 views

Getting focus/activeFocus status from QML ListView

I've a two column layout with a ListView in the left column. With the Left/Right Keys I can change focus between the two parts of the app. The active focus of the left column is delegated to the ...
1
vote
1answer
33 views

Cannot focus on button when focused in textarea in mobile

I have a textarea which when a user types some text into and clicks the button underneath, the button will not work the first time, you have to push twice on the button to make it work. It's as if the ...
0
votes
1answer
53 views

Textbox Focus - Click versus Tab Using VB

The following code changes the properties of a textbox when it has focus and reverts the changes after losing focus. I'm having trouble with using the Enter, Leave, GotFocus, LostFocus events because ...
0
votes
1answer
44 views

C# FormWindowState.Normal not to steal focus

I have a Windows Form Application that will go to system tray when it is minimized. When I received a message to pop-up my application it will call ShowWindowFromTray() function. I do not want to ...
0
votes
0answers
21 views

jQuery focus on live input field

I've got a couple of input fields (generated by a framework). When the user confirms the input on the first input field the focus should move to the second field. I've coded something like this: ...
0
votes
0answers
71 views

jQuery UI: modal dialog focus bug?

I am trying to create a modal dialog box that has a vertical scroll for content that overflows. For demo purposes, this dialog box contains an anchor and a bunch of divs (to overflow). Here is my ...
0
votes
1answer
42 views

Transfer cursor from one JTextField to another on Enter press?

I have one JTextField called Name and one JTextArea called Address. My requirement is when user has entered name in the JTextFieldand pressed enter key the cursor should go to the next text area which ...
0
votes
1answer
13 views

How do you get current keyboard focus coordinates in Mac OS X's Accessibility API?

I'm looking for a Mac OS X Accessibility API to get the coordinates of the location of the current keyboard (not mouse) focus. According to page 2 of the document I found at ...
1
vote
0answers
41 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
1answer
18 views

wxPython TextCtrl Not Focusing After using Remove() or Clear()

So I am making my Major Project for my HSC which consists of three banking calculators. I gather the data from various TextCtrls before doing the calculations. For my Savings Calculator, I have two ...
0
votes
1answer
30 views

focus a parent window using href accesskey

I included a bank calculator tool inside a website. This calculator is opened on a new window. The problem I'm facing is that users need a shortcut to open multiple times the calculator, so I found ...
0
votes
0answers
19 views

JQuery simplemodal autoposition fails when focused on a textbox in webkit

I'm using SimpleModal 1.4.4 and it has a strange behavior when I open the page on ipad. The modal has autoPosition set to true. When it loads, it shows the modal centered successfully. Inside the ...
1
vote
0answers
79 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. ...
0
votes
0answers
25 views

WPF DataGrid.SelectedItem is null when tab in using keyboard

DataGrid is bound to ViewModel.CurrentEntry.EntryLines property and its SelectedItem is bound to ViewModel.CurrentEntryLine property. <DataGrid x:Name="dgdDetails" ...
0
votes
1answer
69 views

QT: Context menu on Trigger

I have a QMenu that in a QSystemTrayIcon. Both are members of a QMainWindow object. I wan the QMenu of the QSystemTrayIcon to act exactly alike when right clicking (ie, reason ...
0
votes
0answers
15 views

Problems with RequestFocusFromTouch

I have really annoying "bug". In order to scroll my screen automatically while I'm adding views dynamically I requestFocus on editText and that works fine with requestFocus(), like this for example: ...
0
votes
1answer
34 views

jTextFields requesting focus (if empty after lostFocus) not working

I have 2 jTextFields and both have listeners for a lostFocus event, if the first textfield lost focus and is empty I want it to regain focus,and almost the same for the second field. I tried this: ...
0
votes
1answer
23 views

KeyListener not working

public class KL implements KeyListener { public static void main(String[] args) { final JPopupMenu popup = new JPopupMenu(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); ...
0
votes
2answers
59 views

c# select textbox on form load

I need to give the focus to a specific textbox when application is launched. I'm using this piece of code: private void myForm_Load(object sender, EventArgs e) { myTextbox.select() } It ...
0
votes
2answers
34 views

How to deselect a HTML button tag with a simple chrome extension

I have created a chrome extension with a simple popup.html file that contains a button tag as first element inside the body. When I test it on Chrome 26 under OS X, each time I click on my extension ...
0
votes
0answers
20 views

Problems with activating webBrowser c#

I have some problems in my program. My program has WebBrowser component with FLASH content (Piano app). if click on other controls(buttons, lists, etc), I need that flash content become active. If I ...
0
votes
2answers
27 views

How to check whether the browser window is active or not?

I'm using Javascript to implement some kind of instant messaging. When a message arrives, I want to play a sound if the user is not focused on the browser window and no sound otherwise. I've seen ...
0
votes
0answers
9 views

Oracle Java equivalent/ solution for setSurviveFocusChange

Is there some solution which works without the Netbeans solution but with the standard Oracle Java classes and methods? ...
1
vote
1answer
55 views

Set focus to 1st textbox in items control

Let's say I have an items control that is bound to a list of items on the VM. Inside the datatemplate is a textbox. How would I set focus to the first textbox in either XAML or the VM? Thanks in ...
0
votes
0answers
47 views

Keeping Focus/SelectedItem after DataGrid ItemsSource change

ive been working on this for a few days, but cant seem to come up with a solution i have code on a timer that refreshes the DataGrid every few seconds i tried many refresh options, but in the end ...
0
votes
1answer
68 views

How to prevent a div element to scroll?

I have a div element containing p elements. I took control of the scroll position of the div (setting the scrollTop property) and of the onclick event of the p. The problem in that when I click on a p ...
2
votes
1answer
123 views

jqueryMobile set focus on input field in popup

In my jquery mobile application I would like to automatical set the focus on an input field after a popup is opened. The input field is in the popup as below. The focus is correctly set at the ...
0
votes
1answer
54 views

jQuery focus() not producing dotted outline or selecting correctly-accessibility

I have been tasked with producing similar navigation accessibility tabbing to what can be seen on this Sony site: http://www.sony.co.uk/pro/hub/home That bit I'm interested in is when you hover over ...
0
votes
2answers
70 views

Android Remove selection EditText after long click

I've got a EditText which I want to use in two ways When clicked everything is selected and the user can change the input. When long clicked the text color changes and for the rest nothing happens ...
1
vote
0answers
24 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 ...
0
votes
0answers
41 views

AppleScript to set up VPN on Mac 10.8 is loosing focus and types text in wrong window, what is wrong?

I wanted to share a very useful AppleScript with other Mac admins but it is losing focus. When it's run in AppleScript editor it runs to a certain stage and then instead of copying text to required ...
0
votes
1answer
26 views

Why doesn't setFocus() work here?

I have a QTabWidget inside a QMainWindow. In the first tabWidget, I have a QLineEdit in it. Now if I call the setFocus() method of the QLineEdit in the constructor of the first tabWidget, it wouldn't ...
0
votes
1answer
25 views

JavaScript/jQuery: Is there any way to use a function on a table only when it is in focus?

So I'm really new to JavaScript, haven't even finished the track on Codeacademy yet. But I did finish jQuery, HTML/CSS, and Python so the logic at least isn't completely foreign to me... Anyway, I ...
0
votes
1answer
46 views

Calling a function or focusing a programmatically generated Iframe from an HTML5 canvas

I have an HTML5 canvas controlled and generated by a library of JavaScript files (Craftyjs library mostly). The canvas generates 2 regular html iframes (same domain) which are stacked on top of each ...
0
votes
2answers
42 views

jQuery function : .focus() wrongly applied instead of .click()

I made a small jQuery function to show/hide a subnav on both focus and click, but I can't figure out why it doesn't work. Here is the HTML code : <ul id="nav"> <li> <a ...

1 2 3 4 5 60