setfocus Questions

17

Solved

I have a TextBox in my C# program. I need focus to be on this TextBox when the program starts. I tried this on Form_Load: MyTextBox.Focus(); but it doesn't work. How do I put focus on this when th...
Rodd asked 6/7, 2011 at 13:29

4

I'm working with a template form component with angular2 and I cannot get to set the focus in my firstName input element after submit the form. The form is reseted fine but no way of setting focus....
Chorea asked 29/3, 2017 at 18:17

4

Solved

When MyFgment appear in screen, I want to set cursor focus on EditText in MyFragment automatically. I've tried EditText.requestFocus(), but it doesn't focus on EditText. How can I do??
Gemeinschaft asked 13/3, 2020 at 5:48

2

Solved

I have an application with just a visible WebView component to it which is used to display some dynamically generated HTML (can run Javascript too). It's enabled for the WebView. For a few pages I...
Arabele asked 14/4, 2011 at 11:56

10

Solved

I am trying to set the focus to the user name TextBox which is inside an ASP.NET Login control. I have tried to do this a couple of ways but none seem to be working. The page is loading but not go...
Sisile asked 15/6, 2010 at 8:26

3

Solved

I have a RecyclerView which have EditText as its list items. When i scroll the RecyclerView, the EditText loses focus when the item goes off screen. So the focus does not remain on the EditText whe...
Parmer asked 21/7, 2017 at 13:29

2

Solved

How can I set the focus on an HTML input field upon page loading while using the Composition API of VueJS 3? I have the following HTML: <div> <input type="text" id="filter&...
Facelift asked 30/3, 2021 at 10:2

5

Solved

Currently in my application it is impossible to deselect a textbox. The only way is to select another textbox. My users and I agree that clicking anywhere else on the form should deselect the curre...
Humpbacked asked 26/8, 2011 at 17:21

3

Solved

I am working at a huge, legacy source code where several SetFocus is called at many places, but sometimes, the check if the control is visible or enabled is missing. Due to limited time, and the hu...
Irrepressible asked 7/12, 2016 at 12:3

7

Solved

What's the equivalent of selenium.focus() for WebDriver? element.sendKeys(""); or new Actions(driver).moveToElement(element).perform(); I have tried both of them and they worked, but which o...
Kirstinkirstyn asked 5/7, 2012 at 2:57

2

Solved

I am trying to do manual focus on CameraX the same as I do in Camera2 API in Camera2 API I use the following code final CaptureRequest.Builder captureBuilder = mCameraDevice.createCaptureRequest(...
Petite asked 2/12, 2019 at 10:23

2

I wanted to have an ion-input that will be focused and the keyboard should not appear. Is there any way or is it possible? Thank you!
Germanophobe asked 20/8, 2018 at 8:2

10

Solved

I make my game run without mouse so using pointer is not a choice. High Score menu will show when player lose. this is my code highScore=new MyTextField("Your Name"); highScore.addKeyListener(t...
Motherwell asked 17/7, 2011 at 10:32

6

Solved

In edittext, after typing 'Enter' key, system make a new line inside it. I'd like to focus on next edittext, no new line. how to code? my code in xml is below <EditText android:id="@+id/txtNP...
Literate asked 11/6, 2010 at 3:9

4

I have a web form consisting of input text boxes, drop downs and submit button. When I use my website on android phone - chrome browser(or any browser on my android device, I am using next on my p...
Monophthong asked 12/6, 2018 at 12:26

3

Solved

I only started coding with vue.js yesterday, and I don't know how to "focus" on a textbox without using the "traditional" JS way, which is document.getElementById('myTextBox').focus(). Initially, ...
Steinway asked 9/3, 2017 at 12:43

4

Solved

I want to set the focus on a specific JTextField which is passed to the JOptionPane as Object Message. Here is my code (I want the focus on txt2 but the focus always is on txt1): import java.awt.*...
Loot asked 25/6, 2011 at 14:31

10

SOLVED : import { Component, ViewChild} from '@angular/core'; import { Keyboard } from 'ionic-native'; @Component({ templateUrl: 'build/pages/home/home.html' }) export class HomePage { @ViewCh...
Stoecker asked 21/9, 2016 at 9:30

2

Solved

I have a document ready block as follows: $(document).ready(function () { $('#addTagLink').click(function () { $('#addTagField').show(); $('#addTagField').val(""); $('#addTagField').focus(); ...
Afroamerican asked 17/2, 2012 at 12:1

0

This problem is happening both in IE and Chrome. This is an HTML 5 with Angular JS 4 application. I am using TypeScript. My main aim in a table row I need to make enter, right, and left arrows of k...
Gurule asked 23/12, 2017 at 1:50

5

I am opening a website in a WebBrowser control using VB.NET 2008. On the fourth page of the website, I want to focus the control by triggering the tab key programmatically. I am using the following...
Eternity asked 24/6, 2012 at 4:13

2

I want to set the focus to the first ListBox item that is a textbox. I want to be able to write in it immedatelly without the necesity to click it or press any key. I try this but doesn't work: p...
Beekeeping asked 22/9, 2011 at 20:19

0

My knowledge of Windows programming is close to zero. But now I have made a Forth program running from the console in Windows which opening a primitive window for graphics. The problem is that I wa...
Reitz asked 21/12, 2016 at 21:19

3

I am creating views and add these views to a linearlayout , These input is taken from edittext at the bottom of the screen like a messanger application. Whenever i push the 'done' button it trigger...
Farnesol asked 3/2, 2013 at 9:53

4

Solved

I got two TEdit controls. When I tab out of edit1, edit2 receives the focus. On my OnExit event of Edit1 I have the following code: procedure TForm1.Edit1Exit(Sender: TObject); begin edit2.Enabl...
Linnealinnean asked 5/9, 2011 at 7:58

© 2022 - 2024 — McMap. All rights reserved.