1
vote
3answers
40 views
JQuery: How do I hide a DIV when textbox is out of focus?
This is the code I have:
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="txtInsertComments" CssClass="expanding" runat="server" …
1
vote
1answer
19 views
in WinForms can control focus change “automatically”? if yes, can I somehow distinguish this from user triggered focus change?
I am not fully sure about this, but I seem to be observing cases where focus shifts automatically from one control to another, even after I explicitly programmatically set the focus to control that I …
0
votes
1answer
14 views
Preventing WPF TreeView’s GotFocus event from bubbling up the tree
I'm trying to write an event handler that fires every time a node in a TreeView gets the focus. The problem I'm running into is that the event handler fires on the TreeViewItem (node) that I click on …
0
votes
1answer
16 views
ASP.NET checkbox changes focus?
I have a checkbox control, and when it's clicked, the focus of the page changes to the top--the window scrolls to the top of the page.
Nowhere in the code am I specifying a change in focus, either in …
0
votes
1answer
20 views
Move focus from one Edit text box to another
Hi,
I am writing a simple calculator application(using absolute layout with 3 edit boxes and some buttons), which has two inputtext boxes and a output box.
input1 = (EditText) …
1
vote
0answers
36 views
WPF Popup focus in data grid
Hello,
I'm creating a custom UserControl to be used inside a DataGrid editing template.
It looks like this:
<UserControl
x:Class="HR.Controls.UserPicker"
…
0
votes
1answer
44 views
gtk: how to hide a window when the application loses focus
Hi,
I want to duplicate the behaviour of tool windows in OpenOfice. When the application loses focus, the tool windows (if they are not docked) are hidden.
So, I have a main window, and another …
0
votes
1answer
22 views
Auto-complete in WPF - Making a popup unfocusable
I'm trying to create a custom UserControl that will mimic auto-complete as it works within Intellisense using WPF. I'm using a TextBox and a Popup containing a ListBox within my control.
I want to …
0
votes
3answers
45 views
jQuery blur with an exception
I have set a focus event on an input element. When there is a focus, jQuery searches for a div and displays it. That works. Wit the blur event on the same input element I make the div hide, which also …
0
votes
2answers
22 views
How to set the keyboardfocus to a textbox inside a UserControl programmatically?
I have a UserControl that incorporates a textbox. I want to set the keyboardfocus to this textbox programmatically when the user clicks a button.
I tried this:
private void Button_Click(object …
0
votes
2answers
37 views
Giving a child window focus in IE8
I'm trying to launch a popup window from a Javascript function and ensure it has focus using the following call:
window.open(popupUrl, popupName, "...").focus();
It works in every other browser, but …
0
votes
1answer
26 views
Windows forms window starting up out of focus (and behind executable folder)
Hi,
I'm getting some strange behaviour in the start-up of a Windows app and wondered if anyone could throw any light on what is happening and how to get around it.
The problem is with the start-up …
0
votes
3answers
39 views
Handling selected objects on the GUI in WPF
I've built several user controls in WPF and they all get added to a canvas. I want to add a behaviour that keep tracks of the currently selected usercontrol. A usercontrol should be selected when:
…
0
votes
1answer
23 views
Re-Focus Browser in Javascript when Dragging File from Desktop
Hey there,
When I drag a file from the desktop to the browser, and I keep the browser in focus (Safari or FireFox for now), I know everything works right (dragging, having the app respond, etc.). I …
2
votes
8answers
87 views
when programming, should you focus on one thing at a time, even if you get stuck on one step ? [closed]
i find myself often falling into a "mental block" where i can't figure out how to find an approach to a problem. i think about it for a few days until it clicks.
is this bad? if you get stuck on a …
