Tagged Questions

-1
votes
2answers
18 views

Focus on TextArea after calling .show(’slow’);

Can get this to work: $(document).ready(function(){ $('a#reason').click(function(){ $('div#reasonEntry').toggle(); setTimeout($('#reasonForChange').focus(),10); …
0
votes
2answers
338 views

SetFocus to asp:TextBox within asp:Panel within asp:Content from content Page Load event

I have an asp web page(login.aspx) that uses a master page (master.page). I need to set focus to an asp:textbox(TextBox1) that is inside an asp:Panel(Panel1) on Login.aspx I want …
1
vote
2answers
51 views

How to programmatically set focus to HorizontalList so that it could receive key events (Flex)?

Hi, all. Please, look at the code: <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <mx:creat …
0
votes
0answers
46 views

set focus to jHtmlArea jquery plugin

I'm using the jHtmlArea JQuery plugin on my page and I'm making it visible onClick of a button. Now I'm trying to place the focus into the jHtmlArea editor once it's displayed, but …
0
votes
1answer
27 views

Manually selecting a control’s element without knowing its name… (ReportViewer)

Hi, i am utilising the reportviewer class in my c# application and have a question that isnt essential to fix but something i would like to figure out. Lets say i launch a new for …
0
votes
1answer
35 views

Setting Focus after Div Animation

Hello, I'm trying to set the focus to an element in a hidden div, after I call the Show method. Here is the code: //Show the Bottom Div $('#dvBottom').show('medium', function() { …
0
votes
4answers
734 views

How can you keep focus and cursor in Flex’s TextInput after hitting enter ?

I am a Flex newbie and I am testing a little application that simulates a cart. (It is based on a nice sample by Farata Systems' Yakov Fain). Note: I am using the beta of Flash Bui …
0
votes
4answers
429 views

jQuery: Set focus to field in DIV

What is the proper method to set the focus to a specific field within a dynamically loaded DIV? $("#display").load("?control=msgs"); // loads the HTML into the DIV $('#display').f …
0
votes
1answer
128 views

arrow keys and changing control’s focus hang the app

I have a usercontrol that contains a flowlayoutpanel (topdown flow) with a bunch of radiobuttons. The control exposes a CheckedChanged event that fires whenever one of the radiobu …
0
votes
1answer
127 views

Setting focus using left and right arrows (HTML + JS)

Is there any to make the left arrow behave like the tab button (set focus to the next focusable item) and the right arrow behave like a shift+tab (set focus to the previous focusab …
0
votes
2answers
266 views

Show helper text on clicking textbox using jquery

I want to display helper text on clicking on the text boxes. eg: If I click a text box it should help us by saying what to type: Enter username here I have tried below given code …
0
votes
1answer
104 views

Locking focus and capture to a specific window

I can call a setfocus and setcapture using a toggle mechanism and in OnLButtonDown make sure the message doesn't get passed on, but that seems to fail the moment you left click. Is …
0
votes
3answers
794 views

How to SetFocus to a CButton so that the border and focus dotted line are visible?

I created a simple dialog-based application, and in the default CDialog added three buttons (by drag-and-dropping them) using the Visual Studio editor. The default OK and Cancel …