0
votes
1answer
37 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 ...
-1
votes
0answers
25 views

Windows form not getting focus

In my application, i have to display a 'Login window' before loading the main application window. It is loading correctly, but the problem is it does not get the focus. I have tried TopMost = true, ...
1
vote
1answer
86 views

Flex 4 - Set focus to none

I'm building an Away3d application which uses Flex 4.6 for UI. The arrow keys are required to move the 3d components - however, after using a component such as a slider, the application gives it ...
3
votes
1answer
151 views

How to force a focus on a component before the Form is shown

I have to show (with showModal) a Form with many TEdit but I want to force the focus on a TEdit, but not always the same, depending on the context. I can't use SetFocus before the ShowModal (because ...
5
votes
2answers
3k views

How to set focus in AngularJS?

What is the 'Angular way' to set focus on input field in AngularJS? More specific requirements: When a Modal is opened, set focus on a predefined <input> inside this Modal. Everytime ...
1
vote
0answers
89 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 ...
1
vote
1answer
99 views

focus on input box when its focus lost

I'm doing inline checking on form input boxes. It's my validating function: function checkResult(input){ var result = Number(input.value); if(result < 0 || result > 100){ ...
0
votes
0answers
189 views

JavaFX ISSUE with event listener

I added a listener to a TextField focusedproperty value changed, wich fires a validation (checks if a typed ID exists). The problem is, when requesting the focus for the firing TextField, both the ...
0
votes
1answer
110 views

Giving a button mouse click focus

Hopefully I can explain this well enough to make sense. My cousin is disabled and used a single button to control applications on the computer. All these applications are custom made and they rely ...
0
votes
1answer
158 views

modifying focus traversal in a JTree

I have a JTree that's working fine, with a mixture of leaf and non-leaf nodes. When I give the tree root focus, the down arrow and uparrow keys do the obvious thing. The small change I want to make is ...
0
votes
3answers
1k views

How to set focus on TextBox in GWT Popup Panel?

I want to set focus on textbox in popup panel. I have Login popup panel which contains textbox for username and password, So How can I set focus on username when popup loads/showed? I am using ...
6
votes
3answers
8k views

Correct way to focus an element in WebDriver using Java

What's the equivalent of selenium.focus() for WebDriver? element.sendKeys(""); or new Actions(driver).moveToElement(element).perform(); I have tried both of them and they worked, but which one ...
2
votes
1answer
5k views

how to set focus on a div using javascript or jquery when # already added in url?

I want to set focus on particular div using jquery or javascript. i have just use document.getElementById("pack_0").focus(); in that 'pack_0' is my div id but it doesn't work. I notice that '#' is ...
0
votes
0answers
43 views

Java: How to un-focus a JFormattedTextField by clicking on a JPanel?

My JFormattedTextField is added to my JPanel. When the user is using the JFormattedTextField, I would like them to be able to click on the JPanel to unselect the JFormattedTextField and at the same ...
0
votes
1answer
454 views

Focus on first invalid text field after form validation

I have a pretty standard HTML form in which I collect user input. I have a submit button that will run a JavaScript function (onClick) that in turn validate the data entered by the users. The ...
0
votes
1answer
276 views

Setting focus of input field in externally loaded swf

I'm loading a swf form into my swf movie (to save on file size). I have a 'faux-form' of static MCs in the main swf, and when a user clicks one, it loads the 'real form' which is its own swf file. ...
3
votes
1answer
973 views

Set focus on winform after start

I found a few topics about this but none of these could help me with my problem, i want to set the focus on a new created winform window after it started. I'm starting the form in a own new thread ...
0
votes
1answer
3k views

How to set focus using jQuery on an element that has just appeared

I have a document ready block as follows: $(document).ready(function(){ $('#addTagLink').click(function(){ $('#addTagField').show(); $('#addTagField').val(""); ...
0
votes
1answer
128 views

Focus hWnd of another application

Is it possible to change focus inside a different application? I'm talking about the distinct views (data lists, custom views), not main windows. These also have handles, spy++ shows them properly and ...
1
vote
0answers
178 views

Error in @user mention tags in facebook

This is the code for @user mention like in facebook comments.. the problem is Cursor is pointing to the beginning after selecting a user.. I want it at the end, ie, select the user from the list ...
1
vote
2answers
125 views

shifting focus from one compnent to another

How can i shift focus from one component to another component when i (program) experience's' a certain case ? Like the focus shifts to the next text-field when in the first text field the word length ...
1
vote
3answers
2k views

backbone.js: set focus to input after render

I have a Model that has 1 input. Also, I have a Collection. Now, when I add a model to the collection, I want to set the focus to it's input. To be precise, I need to set the focus on the newly ...
3
votes
1answer
2k views

Touch-To-Focus on cameraOverlayView in iOS 5?

I used to have touch to focus on my cameraOverlayView (in UIImagePickerController), but once I updated to iOS 5 it doesn't work. I used a custom view class which I applied to my view in ...
2
votes
1answer
1k views

jquery trigger focus and cursor movement

Is there any way to trigger the focus() event on a <textarea> element and put the mouse cursor at the end of the text which is inside the textarea? thx
1
vote
2answers
303 views

silently transfer keyPressEvent to one child , and make it focus?

When user types in a QWidget based window, I wanted a QLineEdit to process all input keys, so I tried the following two solution in keyPressEvent() of that QWidget: A. void Window::keyPressEvent ...
3
votes
3answers
960 views

How to deselect textbox if user clicks elsewhere on the form?

Currently in my application it is impossible to deselect a textbox. The only way is to select another textbox. My users and I agree that clicking anywhere else on the form should deselect the current ...
3
votes
3answers
998 views

Giving focus back to main form

I have a C# app with two forms. The first one is the main form which should always be open. The second one is a preview pane which the user can enable. When the user selects to show the preview ...
0
votes
1answer
252 views

Caret / Cursor is not [really] take focus after .focus() using JQuery

i'm trying to set the focus to the next input box after the user select a value from the autocomplete drop down (using jquery). so the code look like this: function showElement(elementName) { ...
1
vote
2answers
700 views

How do I get the Control that is under the cursor in Delphi?

I need the opposite information that the question "How to get cursor position on a control?" asks. Given the current cursor position, how can I find the form (in my application) and the control that ...
2
votes
1answer
889 views

Focus event with dispatchEvent

When I trigger a focus event with dispatchEvent on an input box, its onfocus is called, but on the UI the input box is not focused. Is there any reason for this behavior? var test = ...
1
vote
2answers
2k views

How set the focus of a input-TextField without having a stagereference?

I got a text-InputField: var textfield:TextField = new TextField(); textfield.text = ""; textfield.type = TextFieldType.INPUT; addChild(textfield); because this textfield don't reside in the ...
1
vote
1answer
360 views

Javascript/jQuery : Refocus a contenteditable div that has child elements within

My Aim: I am detecting hash tags within a content editable field as they are typed. I want to be able to remove a hash tag a it is typed, append it to another container and refocus selection on the ...
1
vote
3answers
3k views

.focus() “set focus on a target input” will not work in Firefox

I have an input field. Under certain conditions I want to keep the user focused on the input field when they hit the Tab key. Basically I'm mimicking the functionality of Google's auto populating ...
1
vote
3answers
2k views

Removing focus from all objects in Visual Basic 6

Is there a method such that a user can click on the form itself, and in doing so remove focus from whatever object (textbox, combobox, etc) currently has it? Basically, can focus be uniformly removed ...
1
vote
5answers
331 views

Can a Cocoa app's executable steal focus from caller?

Say I have a standard Cocoa Application call Foo.app (like the one you get just by choosing New Project > Cocoa Application in Xcode), if I open the app via a terminal using: open Foo.app/ Then I ...
1
vote
1answer
2k views

Focus lost on partial postback with UserControls inside UpdatePanel

I have a bunch of user controls on a form inside an AJAX UpdatePanel, containing a couple of controls including a TextBox. Each of these usercontrols makes up a field on a data entry form. Some of ...
1
vote
2answers
2k views

wpf problem with setting focus

Hi I'm not able to set focus on parent of control. I have a control which is placed on canvas. If I click that control I need to set focus on canvas in order to handle some keyboard events. However ...
0
votes
1answer
2k views

Java - JPanel and KeyListener Problem

I have a JFrame with 3 panels. I extend an App class, and then add three panels to it, like so: JPanel controlButtonsPanel = new GameControlButtons(); controlButtonsPanel.setPreferredSize(new ...
2
votes
1answer
2k views

SWT: Proper handling of Lost/Gained Focus in Custom Controls

Our Control I have a Custom SWT implementation of a Combobox/DropDownList. This is implemented as a Composite containing a Text and a Button. When the list is showed, we use a List control that is ...
0
votes
4answers
3k views

Textbox1.Focus(); does not work; as does not Page.SetFocus(Textbox1); why?

as stated both of these do not work (from Page_Load): Textbox1.Focus(); or Page.SetFocus(Textbox1); any idea why? this is the control itself: <asp:TextBox ID="Textbox1" ...
0
votes
1answer
1k views

How to get my VB.net form to focus above existing users windows and applications?

I have a Visual Basic .Net form (launches after the splash screen tests database connectivity) and it is not focusing above other existing windows on launch. How do I get it to focus above all ...
-1
votes
1answer
143 views

Focus on TextArea after calling .show('slow');

Can get this to work: $(document).ready(function(){ $('a#reason').click(function(){ $('div#reasonEntry').toggle(); setTimeout($('#reasonForChange').focus(),10); return false; ...
1
vote
2answers
733 views

How to programmatically set focus to HorizontalList so that it could receive key events (Flex)?

Please, look at the code: <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <mx:creationComplete> <![CDATA[ ...
1
vote
1answer
2k views

Set focus to jHtmlArea jQuery plugin

I'm using the jHtmlArea jQuery plugin on my page and I'm making it visible onClick of a button. Now I'm trying to place the focus into the jHtmlArea editor once it's displayed, but just can't seem to ...
24
votes
9answers
83k 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"); // ...
0
votes
1answer
845 views

Setting focus using left and right arrows (HTML + JS)

Is there any to make the left arrow behave like the tab button (set focus to the next focusable item) and the right arrow behave like a shift+tab (set focus to the previous focusable item)? I've ...
0
votes
2answers
1k views

Show helper text on clicking textbox using jquery

I want to display helper text on clicking on the text boxes. eg: If I click a text box it should help us by saying what to type: Enter username here I have tried below given code but the text "Enter ...