0
votes
1answer
18 views
WPF “Selected” Property of Custom Control or “Logical Focus”. What should be used?
In my WPF project I have a custom control which is visually represented by a rectangle object. In XAML I put a number of rectangles based on this custom control. User should be able to select a group …
1
vote
5answers
174 views
set focus to iframe body/content in firefox ?
hi, i have an ifram, which has hidden visibility.
i click on button - iframe will be visible and i want to focus on its body/content.
because now i must click on button and then into iframe, so …
0
votes
0answers
21 views
Problem with drawing focus frame in Qt
I'm trying to create custom widget inheriting QFrame. All works fine, but I'm unable to draw the focus rectangle around my widget. Below is the sample code I use for drawing:
frame.h
class Frame : …
2
votes
2answers
23 views
Controling tabbing focus within popup javascript widget context
Hello,
I'm working on a lightbox style javascript plugin that pops up an image with next+previous buttons and a close button. I want to make it so that tabbing will only jump between the three …
2
votes
6answers
1k views
WPF - Can’t set focus to a child of UserControl
I have a UserControl which contains a TextBox. When my main window loads I want to set the focus to this textbox so I added Focusable="True" GotFocus="UC_GotFocus" to the UserControls definition and …
1
vote
9answers
6k views
How to set/change/remove focus style on a Button in C#?
I have a couple of buttons of which I modified how they look. I have set them as flat buttons with a background and a custom border so they look all pretty and nothing like normal buttons anymore …
0
votes
1answer
22 views
HTML/JavaScript: Page’s focus
I have a shopping cart-like form. When a user clicks on the page, in an empty space, somehow, the "Delete Item" button gets focus. Therefore, if the user clicks somewhere and presses enter, items are …
2
votes
3answers
54 views
Could it be possible to make css selector affect other elements in the page without javascript?
For example, I want to make two textboxes have the same style when either is focused:
<div class="divTxt">
<input type="text" id="a" class="a" />
<input type="text" id="b" …
1
vote
3answers
58 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
22 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 …
1
vote
4answers
302 views
How can I prevent focus change when ShowDialog exits?
I'm trying to implement an alt-tab like behaviour for our application. When the user presses ctrl-tab, a form pops up (using ShowDialog); when they press it again, it focuses the next control in the …
0
votes
1answer
23 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
19 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
27 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
votes
2answers
74 views
HTML form needs double click to focus on field
For some reason one of my forms (I have 2 forms in the same page) is not working properly because I need to double click on each form field in order to be able to enter data.
Any ideas why this may …
