The tag refers to a graphics user interface item, which can be clicked using the mouse or tapped (in case of touchscreen application).
Questions tagged [clickable]
702 questions
2
votes
1 answer
Clickable website image not working on iphone and android devices
I use the platform virb.com for my website and am having issues with getting my clickable images to work on iPhone and Android mobile devices. Some links work at times and then they don't work at all. This affects two pages on the site - here are…

user1494241
- 25
- 1
- 4
1
vote
1 answer
How to make listview's clickable items direct on another class with some data?
I've asked before about populating the list view with data from the database. Now I'm trying to make the items clickable and direct it to another class with some information that will be used for the update class.
I think I've managed to direct it…

elle yang
- 71
- 2
- 9
1
vote
1 answer
My code causes URL to open in 2 different tabs, why?
As person helped me to figure out how to start open URL in default browser now I am having bit of a problem which causes to open URL in 2 different tabs when clicked. What could be the cause for this?
EDIT: I think it's good to point out that I am…

HelpNeeder
- 6,383
- 24
- 91
- 155
1
vote
3 answers
Horizontal clickable Menu
I would like to create a horizontal clickable Menu as in the Microsoft Powerpoint or Word.
For example, when 'insert' JButton clicked, I want to see options to be clicked.
So the user can choose any of the JMenuItems below the 'insert'/any menu.…

akoruk
- 195
- 2
- 8
1
vote
1 answer
Dynamic clickable links using Javascript on FormAssembly forms - not within a repeatable section
Need to create a list of different links on a page with the same variable appended to the end of each…

Lee Bishop
- 11
- 2
1
vote
1 answer
In Intellij, no clickable links to file in stack trace
In my Java project, the stack trace in the debug console no longer offers clickable links to the source file, seemingly without any reason. Although clickable links are still present in the stack trace of my other IntelliJ projects, I am unsure of…

Kun Zou
- 15
- 1
- 4
1
vote
1 answer
Create multiple links to websites in main menu of Google Sheets
Well, thanks in advance for those who will help me to solve this one.
What I am trying to do is to create clickable itens in the main menu of Google Sheets. The step of creating multiple drop list items is already overcome, using this script to…

Manotejo
- 11
- 1
1
vote
2 answers
Is there a way to make the entire combobox clickable in a windows form?
Instead of only the little tiny down arrow? Seems like there should be a property I can set or something, but I'm not seeing one... unless I'm blind.

Chaddeus
- 13,134
- 29
- 104
- 162
1
vote
2 answers
Bounce Button Animation in Compose
I want to make a button like this in Compose:
https://pub.dev/packages/flutter_bounceable
But the clickable method is not work in my code.
I tried with this code, but it has an error.
Pushing the button, but there's no action.
Animations are working…

teol
- 13
- 2
1
vote
2 answers
Is there a way to return true or false if an element is clickable. I want to check if one of 3 imprint links is clickable
I want to find out if imprint links are working. Sometimes there are cookie consistent banners and you can not click the link on the page.
But is there a way to find out if there is a second imprint link is clickable on the modal?
export const…

Al Kativo
- 135
- 2
- 9
1
vote
1 answer
Restrict the clickable area of an SVG to its visiblePainted contents
I have a simple SVG that contains a triangle and toggles its fill color when it's clicked:
const toggleFill = (element) => {
if (element.style.fill === 'silver') {
element.style.fill = 'grey';
} else {
element.style.fill = 'silver';
…

Altay_H
- 489
- 6
- 14
1
vote
3 answers
Element ... is not clickable at point (323, 690). Other element would receive the click
I tried to build a code to repeat the search on a website. I follow a number of method from the forum but still failed to resolve the below issue. Below error message was popped up when I tried to click the checkbox "Ensuite". See if anyone knows…

good fit
- 11
- 2
1
vote
0 answers
Showing Image From SQLite Database
i developed a new app which shows my diecast car database from SQLite Database (via this link https://www.youtube.com/watch?v=5_jyEGe6ZHo). Everything is fine i can see infos which are in database. One of this information is the image links of the…

Taygun
- 31
- 2
1
vote
1 answer
Is there a way to get index of clickable in jetpack compose?
So i checked out this video https://www.youtube.com/watch?v=1Thp0bB5Ev0&t=73s and i get the Lazycolumn exchange from recyclerview though Philip as he is called uses a column first and says if you do not need a huge list just use column. My question…

jens
- 207
- 2
- 9
1
vote
1 answer
Scrollable, Clickable text in iPhone SDK
I'd like to make a text based app with clickable text in a scrollable screen. Can't seem to do it with TextView.
Let me explain: you open the app and there is a long paragraph. You scroll down and click on the word hammer (which is probably colored…

Steven
- 11
- 2