Questions tagged [focusable]
77 questions
1
vote
1 answer
When you double-click on the widget is thrown
When I do double-click on the widget is thrown:
Uncaught TypeError: Cannot read property 'focusable' of undefined
I have grid with widget column
text:'blabala'
flex: 1.8,
xtype: 'widgetcolumn',
dataIndex: 'attachment',
stopSelection:…

Danik
- 23
- 6
1
vote
2 answers
How to highlight text in a JTextPane with setFocusable(false)?
So I have a JTextPane that basically serves as a console. I have it in the center field of a JFrame and a JTextField in the south field. The JTextField will take the text it has, and add it to the JTextPane when the user presses enter. In order to…

Ryan
- 727
- 2
- 14
- 31
1
vote
1 answer
Cannot get keyboard focused for link elements in SVG under Firefox
I want to focus a object through keyboard's TAB key by adding link surrounding some other tags like , etc. Here is a reference link: SVG focusable attribute is not working
Using the method in the link above, I can successfully focus the…

Peter Chang
- 13
- 2
1
vote
3 answers
Android layout - ImageView focused, but doesn't show anything on screen (no highlight)
If I set my ImageView to be both clickable and focusable, it works, but I have no way to tell which image is focused. What's the best way to get it to draw an orange border around the view so the user knows it's currently in focus?
I tried dropping…

Scott Merritt
- 1,284
- 2
- 13
- 24
1
vote
1 answer
How do clearFocus() and focusableInTouchMode="true" work together?
I would like someone to explain the 2 following behaviors.
I start with this screen:
When I touch the text area inside "City You're From", I get the following screen:
When I hit the keyboard's "Done" button, I go back to the original state as…

Kacy
- 3,330
- 4
- 29
- 57
1
vote
1 answer
Can't Call OnItemClicklistner (with reference of checkBox in View parameter) on clicking on checkbox in Custom ListView
I am unable to fire OnItemClicklistner method on clicking on Checkbox (in my List-view), i have tried following way...
i have set the focusability and clickability to false as…

Darshan Kapasi
- 187
- 1
- 2
- 14
1
vote
1 answer
Flex : How to set a flex control focusable when it is disabled?
How to get focus for a disabled flex control.
When a flex control is set with enable=false ,the control is not focusable and hence is not read by a screen reader.
When a user tab's it should also go to the disabled controls.
wanted to know how can…

user335483
- 11
- 1
1
vote
1 answer
Two EditText One has to be completed before pass to the other
First of all sorry if I have mistakes on my english.
I'm quite new to android. My problem here is that I have two EditText, call them Name and Phone, on the activity. So What I want is that the user can't write down in Phone if before, the EditText…

Sergio
- 43
- 10
1
vote
2 answers
Android EditText text entry causing scroll
This is a similar problem to what I posted earlier - but different.
I have a HorizontalScrollView which contains 3 "pages". When my app starts up, I tell the scrollview to scroll one screen width so that the middle page is always displayed first.…

SparkyNZ
- 6,266
- 7
- 39
- 80
1
vote
0 answers
EditText in ExpandableListView parent layout not focusable and expandable together
I have a group layout with an EditText and a RadioButton.

Marian Klühspies
- 15,824
- 16
- 93
- 136
1
vote
3 answers
Making a single component full screen
I'm trying to make a JPanel go full screen when you click a button, and back again when you press escape.
I've managed to get the window to go full screen, but because of the whole thing about adding components removing them from other containers, I…

Chris Watts
- 6,197
- 7
- 49
- 98
1
vote
3 answers
KeyListener isn't working?
Ok, so I have this key listener for my game and it isn't working but when I made a new project just to test does it work at all for me it did? So here's some code of my game:
public class GameKeyListener implements KeyListener {
private void…

user1483224
- 13
- 3
0
votes
3 answers
Android -List View containing buttons and textview no longer selectable
I have been through many posts on this site about listview with buttons and text view not being able to be selected. But my problem is different and I'm not able to derive at a conclusion from other related posts.
I have a listview populated by a…

Ajith Kamath
- 51
- 1
- 6
0
votes
2 answers
ListView item selection
I have a ListView with custom list items. Each list item consists of 2 linear layouts one next to other.
LinearLayout 1 | LinearLayout 2 |
I've declared state list drawables for both LinearLayouts where in state_pressed I'm changing…

Zheko
- 673
- 6
- 16
0
votes
0 answers
How to make SVG Elements wrapped in Angular Component which is a Shadow DOM focusable by tabbing
I am trying to make use of the default behaviour when a user presses Tab to iterate over input elements.
I want to make SVG elements focusable by key stroke.
The SVG is wrapped inside a component.
…

neukoellnjenny
- 35
- 6