Tagged Questions
0
votes
1answer
75 views
How to prevent a div element to scroll?
I have a div element containing p elements.
I took control of the scroll position of the div (setting the scrollTop property) and of the onclick event of the p.
The problem in that when I click on a p ...
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
87 views
JSpinner does not transfer focus when pressing Enter
The code bellow was supposed to transfer the focus to the next control after hitting the Enter key at anytime, the event fires but .transferFocus is not transfering the focus, what could be wrong?
...
1
vote
2answers
65 views
jQuery focusin event: Why is event.data empty?
My binder:
$("#wrapper").on("focusin", ".someInputField", function(e, a) {
/* do something */
});
My trigger:
$('.someInputField').trigger("focus", ["extra", "data"]);
How do I get to the ...
0
votes
0answers
192 views
python win32com.client.DispatchWithEvents does not catch all events
the following code is running on python2.7:
import win32com.client
import pythoncom
import IntelliCAD
import Tkinter
icad_CLSID = '{77E49E57-976B-11CF-8CCB-00A0245B09EB}'
icad_ProgID = ...
1
vote
1answer
76 views
Some components aren't responsive to events
My Event Controller class isn't receiving events from the JColorChooser whenever its chosen color changes, nor is it receiving KeyEvents from the JComponent (The one I'm using to draw the star into). ...
0
votes
1answer
29 views
Prevent from inserting char, and firing new event
I have problem with, capturing "keydown" and then change focus to "last active" focus.
If I set focus to particular element within function that captures event, "input" element get a "char" ...
1
vote
1answer
100 views
How to detect if focus shift from a widget inside a QWidget to one outside?
I'm programming in Python using Qt with PySide and I have custom QWidget defined in a file called editor.py which is inserted in my ui in windowUi.py using the promotion method in the Qt Designer.
...
0
votes
2answers
319 views
How can I capture window focus change event with c#
I want to build an application to monitor all running windows focus change event. I know WM_KILLFOCUS (0x0008) and WM_SETFOCUS(0x0007) and when window lost focus or get focus, the message will be ...
2
votes
2answers
2k views
Optimizing AngularJS directive that updates ng-model and ng-style on focus
I'm new to AngularJS and I'm making made a couple of custom Angular directives to do what I used to do with Jquery, however there is one case where I'm not sure if I'm doing it the "the angular way". ...
0
votes
1answer
119 views
jQuery does calling val(), text(), or html() sets the focus to that element?
If I call $('#txt1').val() or $('#txt1').text() or $('#txt1').html(), does that sets the focus to that element? Because, I have this focusouthandler, that is being called n times (n being the number ...
0
votes
1answer
82 views
JS / Jquery - Focusing to the next input field from the event.target
Trying to have it so when a link is clicked aside one input, it will hide that link and focus to the input field in the next div. I need to reference it with an event-target for other reasons.
If I ...
0
votes
1answer
116 views
Keyboard handling in a winforms app
I'm building a WinForms app which looks roughly like this:
There is a single Form, with a menu, toolbar, status bar, a navigation tree, a custom drawing canvas (which is a UserControl that accepts ...
0
votes
1answer
280 views
jQuery focus event duplicates on tab change
This is a very weird bug I've noticed.
Im using the .focus() event to append a div to another one when it triggers.
The code is okay and it works fine, however when I switch tab (I mean I open another ...
0
votes
0answers
142 views
Why is a RichEditableText control losing focus when clicking inside it?
My app creates a RichEditableText in response to a button click and then sets the focus on the control So, User can start typing immediately.
However, it seems that a focusOut event is dispatched for ...
1
vote
1answer
845 views
IE8 Clearing JQuery-UI Autocomplete Input Field After Selection
I've got a jquery_ui autocomplete. When I click on a selection in firefox my code runs as anticipated. When I run it in IE8, something is clearing the selection from the input box (after all my code ...
1
vote
1answer
131 views
How to track events in VB6
I'm working in a project that unfortunately is written in VB6. =P
I'd like to know if there's any way in VB6 to track a event sender.
My problem is that i have a text field which is receiving focus ...
0
votes
1answer
183 views
Gwt : How to not to fire a click event after focus?
I've created some elements of my GUI with GWT framework. I've just one button with an simple onCLick method. And when the button gets the focus (setfocus(true)) the triogger fires a click event ...
0
votes
1answer
528 views
e.Cancel fires but other code also fires when a click event occurs
A form has many buttons. One of those buttons contains code to update the TableAdapterManager. One of the many TextBox controls has code in a Validating event handler. There is code to make sure a US ...
1
vote
2answers
1k views
How to be notified that a composite's child received/lost focus?
I have an SWT Composite that I need to pass to some other code which will add children to it at will. Is there any way to be notified that a child of the composite received and lost focus?
Just to ...
2
votes
1answer
722 views
tinyMce bind focusin/focusout events?
i am trying like this:
setup : function(ed, evt) {
ed.onInit.add(function(ed, evt) {
tinymce.dom.Event.add(ed.getDoc(), 'focus', function(e) {
// Do ...
1
vote
2answers
226 views
Live focus issues with dymaic input fields
I'm trying to make a dynamic input fields solution, similar to my dynamical select rows method.
The idea is simple. There always will be a extra field. So when the last field is in focus, it will ...
0
votes
1answer
155 views
why BeforeRowLeave is not fired when leave the grid?
I have a devexpress grid: each row has a checkbox and a text column, when I check the checkbox, the text column is updated. After the text column is updated, I would like to manual save the row to ...
0
votes
1answer
863 views
Flex 3 - Focus In/Out from TextInput
I'm trying to implement Focus In/Out from a TextInput in Flex 3. I'm using a controller to process all components events and my idea is to have a switch statement to "forward" to the appropriate ...
0
votes
0answers
355 views
TextInput focusOut not behaving as expected
(using flex SDK 3.5 here)
I think I can easily demonstrate a bug in Flex concerning the focusOut event. In my program this is fired not only for the control actually losing focus but the focusOut ...
1
vote
2answers
280 views
Find out why textbox has lost focus
A textbox looses focus and I don't know why. How can I find out the reason of why the focus is lost? I've tried listening to TextBox.LostFocus event, but it's parameters don't seem to give me any ...
0
votes
3answers
150 views
give focus to textbox when control is shown
There is a custom UserControl which contains a TextBox. How do I give focus to the textbox when UserControl is shown? I've tried calling TextBox.Focus on UserControl.IsVisibleChanged and ...
2
votes
0answers
190 views
Stopping table & td elements from getting focus
In IE it seems that table & td elements will automatically receive focus on a mouse click.
Taken from
http://msdn.microsoft.com/en-us/library/ms534654%28VS.85%29.aspx
The following ...
2
votes
2answers
2k views
How to give focus() after an alert()?
I have something like:
<input type="textbox" id="partNumber" onChange="validatePart(this);">
<input type="textbox" id="quantity" onfocus="saveOldQuantity(this);">
The onChange event is ...
2
votes
2answers
142 views
How do I modify properties of siblings with CSS selecters like :focus?
I am having trouble with some code on my site, http://ethoma.com/wp/. In the search bar, on the left side, I want the usually dark gray "hit enter to search" to turn a light gray when the search field ...
0
votes
1answer
361 views
Efficient way to request touch focus from WindowManager?
I have created two views on a FrameLayout, and requested focus to second. When I start the activity touch events hangs up for a while, then passes to my GL view. This takes random time I think ...
3
votes
2answers
902 views
FocusLost at User Control [wpf]
FocusLost event is working on WPF's components properly
For User-Controls it is different:
if any control in the User-Control is clicked or focused, the User-Control's FocusLost is fired immediately ...
1
vote
1answer
988 views
Focus disappears when a4j:support is used
I use JSF and I have 2 input texts on the page.
<h:inputText id="xxx" value="#{file.xxx}" maxlength="12" >
<a4j:support event="onchange" reRender="datePanel1"
...
0
votes
1answer
2k views
Flex focusOut event on TextInput and pop-up does not remove focus?
I have a flex app with several fields and one text field with a focusOut event:
<mx:FormItem label="Last" x="226" y="1">
<s:TextInput id="lastNameClientTextInput" ...
0
votes
2answers
1k views
Transferring touch focus to another view
This question is a bit awkward. Is it possible to transfer the touch focus of one view to another? Basically, say that you have a view that picks up the first ACTION_DOWN touch event, and then ...
1
vote
0answers
88 views
Flash stop receiving keyboards after Drag'n Drop, until I click the Flash again, or use Tab key… Weird problem
I have a puzzling problem with Flash.
Coding a game, like so many others. Javascript and Flash both listen to keyboard events.
Javascript redirects keys to Flash, like many others seem to do. It's ...
2
votes
1answer
885 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 = ...
0
votes
1answer
305 views
AS3 listen for keypress, but global
When I add a keypress eventlistener to the stage, it does not fire when the focus is on an other object ... How can I listen for any keypress event regardless of the focus?
1
vote
2answers
2k views
Event to detect when a user control gains focus?
I have a user control on a form that can spawn several non-modal child forms. The child forms display data that the user can edit. The user control displays a different view of the same data, and I ...
0
votes
2answers
665 views
how to apply Focus_out event to more than just selected component
I'm using code based on this post.
It uses a focus_out event to detect if there is a change that needs to be committed. However I notice that a FOCUS_OUT event is only called if you click away from ...
1
vote
6answers
947 views
jQuery combining focus and hover
I am trying to use focus event on list element. it's working with hover, but not with focus! Do you have a idea ?
$('#main-menu ul.rubriques li')
.hover(function() {
...
0
votes
2answers
796 views
Triggering Function Event on Selecting a row in an Advanced Data Grid
The Following code seems to only be working when i have editable="true" on the Advanced Data Grid. But I don't want it it be editable. Anyone have any idea or experience with this issue?
The docs ...
2
votes
3answers
3k views
jQuery handing both focus and click on an element
I'm trying to determine workflow to fine-tune a data entry web application. Picture several address forms on a single web page:
1. Name___________
Street_________
Phone__________
2. ...
1
vote
0answers
227 views
How does WinForms label control handle focus?
Folks,
There is a panel which contains 2 components: a label and a TreeView. The hierarchy, obviously, looks like this:
panel1 // handles Enter event
- label1
- treeView1
I need to do some ...
0
votes
1answer
161 views
Doesn't Xul'l browser focus event work?
I have this browser element:
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window width="400" height="300"
...
0
votes
0answers
177 views
setting focus to a fields in javascript
i am using the following function.
_myfun:function(event){
if(event.target!= document.activeElement)
{
if(isNaN(dojo.byId("cxyz").value)){
...
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
663 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
2answers
232 views
How can I detect the user has clicked on the Page Tab where my html page is?
I'm developing a web chat and I need to raise an event when the conversation has changed so the page title changes so one user can know that the other user has written anything.
So I tried the code:
...
3
votes
1answer
3k views
GWT FocusPanel, tab key and focus handlers
I'm implementing a custom widget extending Composite and implementing Focusable and HasFocusHandlers.
The widget contains two widgets in a panel that I wrap into a FocusPanel that I use to initialize ...
