Focus indicates the component of the graphical user interface which is currently selected to receive input.
0
votes
2answers
68 views
Giving focus to <select> elements in Mobile IE (WP8)
I'm working on a HTML 5 based web application, that will eventually be deployed to iOS, Android and Windows Phone 8 (possibly 7, too)
One part of the application involves the user selecting options ...
0
votes
1answer
50 views
focus() method scrolls top only in internet explorer
In every browser focus() method on input scrolls to top of the page. I hack it with custom method like this:
$.fn.focusNo = function () {
var x = (window.pageXOffset !== undefined) ? ...
1
vote
2answers
43 views
JQuery - focus by click in form
I'm programming a contest app for a customer.
Description:
I have three pictures on a page. A user has to choose one of the picture, "select" it and click on "I want to participate". After that, he ...
2
votes
1answer
65 views
0
votes
0answers
60 views
Send special key to application not in focus
I wonder if I can send (using API or not) a combination of keys like "CTRL+SHIFT+X" to a window without focus?
I have done a function to send a string to a window without focus, but I don't know if I ...
2
votes
1answer
70 views
Chrome: Recover document focus after jquery fadeOut
I'm trying to have an overlay that I can toggle with keyboard keys.
However, once I hide the menu using fade out, the document won't receive my keydown events until I click in the window. How can I ...
0
votes
0answers
31 views
Focus method of Run (in a FlowDocument) is not working
Code:
TextPointer navigator = flowDocViewer.Document.ContentStart;
// While we are not at end of document
while (navigator.CompareTo(flowDocViewer.Document.ContentEnd) < 0)
{
// Get text ...
0
votes
0answers
27 views
can i request focus on the android mail builtin application?
here is the problem :
i use mail intent and put all the infomation needed .
like that :
Intent intentEmail = new Intent(Intent.ACTION_SEND);
intentEmail.setType("plain/text");
...
1
vote
0answers
18 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 ...
0
votes
2answers
87 views
CSS transitions and browser tabs
This is a really weird problem:
I have a circle that keeps rotating indefinitely with CSS rotate transition, to keep it rotating indefinitely I am using jquery to keep changing the rotate value every ...
3
votes
1answer
140 views
jQuery - blur, but not if click on button
I have a search box that is small in normal state.
on focus it expands, and a submit button shows up. This was done to save space.
now, on blur, the search box shrinks again, and the submit button ...
1
vote
1answer
115 views
WPF Datagrid Items Refresh lose focus
Refreshing my datagrid when my observableCollection gets updated in the viewmodel have been a nightmare. After I discover the DataGrid won't respond to the events raised by the ObservableCollection I ...
0
votes
1answer
32 views
Fragmentation element overlap issue?
I design an activity which is using full screen fragment(A), it have some button on screen (like http://i.stack.imgur.com/siQHT.png).
Now from this fragment(A) launching another full screen ...
0
votes
0answers
36 views
Setting focus to non-form element inside slideshow
I've tried a bunch of different things (having the slide heading clickable to transfer focus, having the parent tabindex to -1 per another solution...) so far but am yet to solve my problem. I've got ...
3
votes
4answers
91 views
Html: focus on li on arrow down press
I am creating a custom auto suggest-box I need to move on li items on arrow down press.
so I added tabindex attribute to li it is getting focus. but problem is that it scrolling the div up with some ...
0
votes
0answers
111 views
Mobile Safari jQuery select() on focus input doesn´t work
This problem is on iPad IOS6 in mobile Safari.
I wan´t the text in an input to be auto selected when the user clicks the input.
I have a solution that works in a regular browser, like Chrome:
...
0
votes
3answers
112 views
Set UIWebView Content not to move when keyboard is shown
I've done large enough research but couldn't find answer to my question.
Suppose I have a webView in which I have some text fields, some of them are placed on the bottom of screen so that when ...
0
votes
0answers
69 views
android edittext doesn't lose focus
I have listview which contains one edittext, one textview and one imageview. Initially edittext is gone and textview is visible.
My aim is if user clicks the imageview, textview will be switched to ...
0
votes
0answers
18 views
Spinner text not animating with ellipsize
I have normal spinner using normal ArrayAdapter with String list.
the problem is that some of the records are quite long and i want to use ellipsize to animate them. except that it doesnt work. in ...
0
votes
0answers
66 views
Is it possible to remove the dotted rectangle and visual style on the selected tab in TabControl?
I am having a problem on my extendedtabcontol class, I cannot get rid of the dotted box or the visual style box on the selected tab. I have my own DrawItem (see below), I have overridden several ...
0
votes
1answer
78 views
jquery ui dialog how to detect loss of focus
I have been searching for quite some time without success. I want to detect when a particular jquery ui dialog has lost focus.
I know I can detect when it gains focus like so:
focus: function(event, ...
2
votes
2answers
110 views
jQuery show/hide focus issues
Have a dropdown appearing from below input text field. Currently configured to hide this dropdown if the text input field goes out of focus. Problem is, the user needs to be able to click on the ...
3
votes
3answers
208 views
jQuery - using arrow keys to navigate grid of divs
I'm pretty new to HTML, CSS and jQuery - and while my HTML and CSS are OK, my jQuery is not too good - and I think I'm trying to achieve something quite complicated.
As you can see in the code I ...
0
votes
1answer
130 views
Android EditText focus inside of Fragment within ScreenSlidePageAdapter
[Using the support library]
When attempting to use an EditText inside of a Fragment that is in my ScreenSlidePagerAdapter in which multiple Fragments are visible at once.
The second Fragment in the ...
0
votes
0answers
31 views
how or where to set focus on a checkbox inside a composite control
I am trying to set the focus on a check box control inside a composite control like
myCheckBox.Focus();
But it is throwing a null exception.
Could you tell me how set the focus and tab order on ...
0
votes
1answer
130 views
CSS highlight on focus
I am using border radius on an input field and when I select the field, it gets a border highlight as if there is no border radius i.e. the imaginary rectangle with sharp edges gets highlighted and ...
1
vote
1answer
70 views
Cannot give focus to Flash object with keyboard, but can focus with JavaScript
This question is related to (but distinct from) my other question here: Give focus to browser
I have an embedded flash object on my page, and I want it to be included in the tab cycle. I've set ...
3
votes
1answer
54 views
Give focus to browser
I'm working on keyboard accessibility. I have a flash object which sits inside a page, and to stop the focus getting trapped inside it, I've added tab listeners which talk through ExternalInterface to ...
7
votes
2answers
64 views
How to detect when an image is out of focus?
At times our optical inspection system gets out of focus which results in nonsensical measurements. I've been tasked to develop an 'out of focus' detector which will be used to drive the Z axis of ...
0
votes
0answers
54 views
Set focus to previous focused editText (by key in Soft Keyboard)
I am implementing Soft Keyboard on Android platform.
I have already done almost, but there is one button I can not implement. Thats a key that changes focus to previous editText (if it is).
My layout ...
0
votes
1answer
76 views
How to change the focus inside a form and make the new control deal with the key pressed?
I have a form with a search box and a datagridview with the results.
What I need is the search box to always get the focus whenever I press a char or number key, and then process the key. So, for ...
0
votes
0answers
15 views
How to focus last row of table in my Jcomponent by using swings?
How to focus last row of table in my Jcomponent by using swings?
public void displayInvoiceDetails(final JDialog dialog, String id,
String title) {
JRootPane pane = ...
0
votes
1answer
28 views
UserControl, cursor at tabnavigation
In my window there are two textbox and my usercontrol.
Once the cursor is TextBox1. When I click Tab cursor is in my UserControl, but cursor remains stable on TextBox(like | without blink). When I ...
1
vote
1answer
80 views
Android list - edittext in header of list
I have a List in Monodroid which has a header with an EditText. The problem is that EditText not getting focus properly. Here is how it works:
If you touch the EditText, the keyboard comes up ...
2
votes
2answers
66 views
jquery focus and blur function but also if val is not equal to null.
I am trying to modify the background of an input based on the focus and blur events. That part works fine, but I also want to set the background if the client has entered a value into the search box. ...
1
vote
3answers
67 views
Best practice for setting focus to a Swing control in a JPanel
One school of thought says to add a window listener and set focus when the windowOpened event fires:
addWindowListener(new WindowAdapter(){
public void windowOpened( WindowEvent e){
...
0
votes
2answers
147 views
How to get focus back for parent window from an iframe programmatically in Javascript
Some websites have focus set on an element on window load. If I iframe that website, It seems not able to set focus on parent window, programmatically. This only happens to IE (9) and Firefox (19), ...
1
vote
1answer
268 views
HTML text input select all content on focus not working in chrome
I have a bunch of text inputs each inside a table cell like this:
<td class="tdTextInput">
<input type="text" value="0" name="txt1_9_4_2" id="txt1_9_4_2" class="input-supermini">
...
0
votes
3answers
56 views
How to achieve this effect on :focus
I saw this on a website:
Then, when you click in it...
How would you recreate this? Not just a plain solid border, but like that one. I scanned through the source code but couldn't find anything. ...
1
vote
2answers
105 views
Focus Textbox using only XAML
I'm trying to set the keyboard focus to a textbox that is included in a stackpanel collapsed by default. When the stackpanel becomes visible i want the textbox to become, by default, focused.
I've ...
6
votes
1answer
156 views
Set an initial focal distance on iOS
I'm working on an iOS-app where one of the features is scanning QR-codes. For this I'm using the excellent library, ZBar. The scanning works fine and is generally really quick. However when you use ...
0
votes
0answers
28 views
Java set RequestFocus for JtextField on JInternalFrame
I want to set Requestfocus for Textfield placed on JInternalFrame. I already tried few available options. But nothing worked for me so far.
txtItemName.requestFocusInWindow (); // did not work
...
0
votes
0answers
30 views
How to trigger focus event after blur event is triggered
How to trigger an focus event after the blur event is triggered ?
I have ajax call , which works when the blur event is called in a input text field. If the ajax call throws server side exception, I ...
4
votes
1answer
157 views
How to disable focus for first input in a Primefaces Dialog?(JSF, Primefaces)
I have a Dialog in my Page, which contains a input field (Date, Calender) . The Problem is that the calender opens directly after opening the dialog, because the focus is set on the first input.
Is ...
0
votes
1answer
82 views
Java requestFocus() not working at the constructor
In my Java Swing Application Reuestfocus method not working at the Constructor. But it works if I used requestfocus along with button action listener. I want set Requestfocus at the form load. I dont ...
0
votes
2answers
95 views
How to find out if TCustomControl is focused when Focused property returns always False?
We are using modified TToolWindow97 = class(TCustomControl) component.
I can only find it on TForm.Components. And there is no it on TForm.Controls. So, TForm.ActiveControl is nil and ...
1
vote
4answers
88 views
How to block keyboard when focusing on EditText
In my Android application, I have to use a custom number-pad which is placed in view next to EditTexts to input numbers, so I need:
EditText should have focus when user tap them so that I will have ...
0
votes
0answers
63 views
focus event not working when i'm active in another tab of the browser (js | jquery)
i have an input element with id='idtxt' and i want to set the value on it include sign | of cursor,and i using focus() event to do that
document.getElementById('idtxt').value = 'mytxt'; // mytxt|
...
0
votes
1answer
91 views
Make cursor leave text field with jQuery
I have a html form with input type=text which launches a custom js function on submit. When the user hits ENTER, a jQuery listener calls the same function.
This means: The user can choose between ...
0
votes
1answer
45 views
focusing on an element changes another's CSS
I want to change an element's color Hdr_nav_search_box when focusing on another element Hdr_nav_search_input. Here are the codes : http://jsfiddle.net/FJAYk/4/ I don not see why this is not working.
...






