Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
307 views

Did user use keyboard or mouse to leave WPF TextBox?

I have a handler for the TextBox's PreviewLostKeyboardFocus event. It fires when I leave the TextBox using the keyboard (Tab key) or the mouse (by clicking on another TextBox on the form). The ...
4
votes
2answers
1k views

How do you solve this LostFocus/LostKeyboardFocus issue?

Ok, I have a control that has an IsEditing property which for argument's sake has a default template that is normally a text block, but when IsEditing is true, it swaps in a textbox for in-place ...
4
votes
4answers
17k views

ASP.NET TextBox LostFocus event

I need to trigger code on the server side to be called when a TextBox loses focus. I know there is the onblur client side event, and that there is no LostFocus event, so how can I cause a postback to ...
4
votes
3answers
549 views

Determine Where Activation Is Going When A Form Is Deactivated

Does anyone know of a way to determine which window is going to receive focus when a form is deactivated?
3
votes
2answers
1k views

How to correctly handle Android EditText input inside a ListView?

In my application I have an activity to add/remove/edit records inside a SortedMap. The activity is implemented as an extension of ListActivity. I have implemented custom ArrayAdapter for the ...
3
votes
2answers
729 views

WinForms Web Browser control forcing refocus?

I'm trying to automate a web process where I need to click a button repeatedly. When my code "clicks" that button (an HtmlElement obtained from the WebBrowser control I have on my form) then it brings ...
2
votes
1answer
221 views

WPF usercontrol not allowing lostfocus to change on seperate control

This one is a bit tricky to explain. I have a usercontrol with some textboxes. I also have a menu just above this usercontrol in the same window. Whenever I tab away, the LostFocus fires correctly ...
2
votes
2answers
137 views

With what keys can a user leave a WPF TextBox?

I'm trying to determine whether or not a user left the WPF TextBox using the keyboard or the mouse. If I decide to monitor the TextBox for certain keys being pressed, what are the keys for which I ...
2
votes
3answers
1k views

check email id already exists in database when losing focus

I want to check the entered email id already exists in my database or not. For that I need the Text box lost focus event so that I can call it in update panel trigger asynchronously. whereas in my ...
1
vote
1answer
25 views

Blackberry PictureScrollField image issue when focus is removed

I'm using a PictureScrollField in a VerticalFieldManager with other fields that need focus. When the PictureScrollField receives focus, the images are shown in their original form. But when I remove ...
1
vote
1answer
48 views

Appears default JButton when button looses focus

Button lost focus: Button has focus: Short code: MLibrary = new JButton(); MenuPane.add(MLibrary, new AnchorConstraint(0, 0, 0, 0, AnchorConstraint.ANCHOR_ABS, AnchorConstraint.ANCHOR_NONE, ...
1
vote
2answers
35 views

Respond to key event when the application is out of focus(inactive)

I want to capture key event at all time, even when my application is not in focus. For instance, My application should detect Ctrl+SPACE key combination while the focus is with other application, and ...
1
vote
2answers
176 views

WPF TabItem lost focus event

I have tabItems with TextBox on their headers. I use LostFocus and MouseDoubleClick events to set the text to the TextBox. <TabControl> <TabItem Width="50"> ...
1
vote
1answer
658 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 ...
1
vote
1answer
1k views

WPF: LostFocus event on a particular control/view/viewmodel

I'm working in WPF using the MVVM pattern, and generally things seem to be working pretty well, as I wrap my brain around the nuances of both WPF and MVVM. However, I'm currently stuck on a ...
0
votes
0answers
50 views

Prevent textbox lost of focus in popup when onmouseover is triggered on another div (extjs)

I don't know if this is a browser general issue or if it is related to my code but here is my issue : Lets say my page contains a link and a menu. I click the link and a popup opens [it contains a ...
0
votes
1answer
95 views

Binding a NumericUpDown control to an object that implements INotifyPropertyChanged

I have a NumericUpDown control that is bound to an int property on a business object which implements INotifyPropertyChanged. The Data Source Update Mode for the NumericUpDown control is set to ...
0
votes
5answers
199 views

how to regain focus on a edit text when expandable list is reloaded…?

I have a ExpandableListView in which i am loading custom layouts in both group and child views. They are having some edit text fields. When i click on the edit text, the soft keyboard appears, ...
0
votes
0answers
40 views

eclipse not showing message Box in focuslost event of textBox

i am suck with the problem while executing the following condition. txtAnnualLeave12 = new Text(group_3, SWT.BORDER); txtAnnualLeave12.addFocusListener(new FocusAdapter() { ...
0
votes
0answers
110 views

Setting focus on a textbox to get the correct tab order

I have a problem with setting focus on the next element. I basically have a panel that pops up when you click on an arrow image. It pops up a listbox that you can select items from that will then ...
0
votes
1answer
119 views

MessageBox from secondary Form makes Main Form go to background/unfocus

I cannot get focus back to Main Form after closing Second Form. When I do this: (From Main Form) "Form1Main": .. Form2Output.Show; .. From "Form2Output": if (bNoWarnings = False) AND ...
0
votes
2answers
271 views

ASP.Net dropdownlist post back on lose focus?

Right now I'm using the OnSelectedIndexChanged event to trigger a post back and update some other fields in the form. That works fine. But I would like it to do the post back when the drop down list ...
0
votes
0answers
91 views

Flash cannot keep focus after some time in Chrome on Mac

A Flash game developed by me will loose focus when it has been played around 8 times (20 to 30 minutes in total). The game take around 3 minutes to complete and the browser will navigate to another ...
0
votes
1answer
233 views

how do I make shoutbox chat-log scroll to bottom with constant refreshing without changing mouse focus?

I am writing a small shoutbox/chat app where I am using the following piece of code to refresh the message log div every 0.5 seconds and to refresh to the bottom to show the latest message. ...
0
votes
3answers
798 views

iOS Programming: UITextField, listen for unfocus event

How can I listen for unfocus event in UITextFiekd? I would create a sort of handler that is activated when my text field lost the focus. For example, if I click into another part of the application, ...
0
votes
1answer
301 views

jQuery Autocomplete loosing focus on selecting value

I am using the jQuery autocomplete and not UI autocomplete. with option multi = true. However when I select the first option with enter key, the focus is lot from the input control. Even the demo page ...
0
votes
1answer
216 views

How do i find the new focus item with jquery?

I have a pop up dialog that lets you write text and does stuff when you click a button. My code is below This function works, i find the new object by looking at ...
0
votes
4answers
774 views

How to trigger ASP.NET client-side validations without submit?

I have a website in ASP.NET (WebForms, NOT MVC) which has a survey form divided in several slides. Each slide has a next button that, obviously does a transition (client-side, not post back or remote ...
0
votes
2answers
1k views

Define onblur event dynamically in ASP.NET code

What I am looking for is to dynamically create two textboxes from the C# ASP.NET code (either normal textbox or HTML input text, I don't mind). And then I tried (and failed) to define an event that ...
0
votes
2answers
780 views

Ignoring focusLost(), SWT.Verify, or other SWT listeners in Java code

Outside of the actual SWT listener, is there any way to ignore a listener via code? For example, I have a java program that implements SWT Text Widgets, and the widgets have: SWT.Verify listeners ...
0
votes
1answer
366 views

WPF: Putting focus back on textbox recursively calling Lost focus event.How to solve?

I have a WPF form where a text box and label is present.In the "Lost Focus" event of text box, i am doing some validation and if the validation fails i will show an error message in the label and put ...
0
votes
3answers
2k views

How to re-focus to a text field when focus is lost on a HTML form?

There is only one text field on a HTML form. Users input some text, press Enter, submit the form, and the form is reloaded. The main use is barcode reading. I use the following code to set the focus ...
0
votes
4answers
741 views

C#/.NET: TextBox is not 'focused' after a process was initiated

I am having a problem after opening the notepad once I click the button "btnSearch". The idea is that once I clicked the button 'btnSearch', the textbox 'txtSearch' should be 'focused' even after a ...
0
votes
1answer
571 views

jquery: LI w/ input inside, how to hide LI when focus leaves the LI and it's children completely

I have a UL with an LI inside of it, when i click on the UL, the LI inside of it fades in. The Li has an input inside of it (search form), next to it i have a select input to select the section of the ...
0
votes
4answers
2k views

how do i make that dang wpf popup go away?

when i use a popup, it seems to hang around. in the code below i attach a popup to a textBox using by overriding the control template, and make the popup appear when the TextBox has focus. When you ...
0
votes
2answers
1k views

Popups in WPF immediately lose focus and close

I've been beating my head against a WPF Popup issue, and am hoping someone can help me:) The outline goes like this: Our app stores a list of UIObjects - these represent elements that are displayed ...
0
votes
1answer
248 views

In Qt4 is there a way to know from inside a widget if the focus has been lost?

I am trying to design a couple of simple widgets in order to get a better knowledge of Qt 4. (This is my first attempt at desktop programming - coming from a background of web development) One of ...
0
votes
1answer
635 views

Bring form on top of others when clicked on taskbar button in Delphi

Base question: http://stackoverflow.com/questions/1141544/tstatusbar-flickers-when-calling-update-procedure-ways-to-painlessly-fix-this The executed code is in the questions first posts first part ( ...
0
votes
3answers
1k views

Problem with WPF data binding and Access Keys

Please consider the following example. Note that in the real-word, the binding source will likely be a data object. I'm using a TextBlock for simplicity. <Window x:Class="Window1" ...