Questions tagged [click-through]

Description

Click-through means that you can click through something. Normally, the things behind it can then be clicked (or selected), while normally they wouldn't be clickable, because the element in front of it would catch the click-event [1].


CSS

To make something click-through in CSS, many use pointer-events: none;, which means that, when an element is clicked, a pointer event (in this case, a click-event [1]) will not be fired. Instead, you can click (or select) the elements behind it. This is basically useful for (partly or semi-)transparent images.

It is also used to simply disable click-functionality (disabled links for example). Mind though, when using pointer-events: none; you disable all pointer events, not only the click-event (which is necessary for a click-through element); hovers and other pointer events will be ignored as well.

[1] Basically an event saying "Hey, I have been clicked!".

69 questions
0
votes
0 answers

Click through semit transparent WPF application

I created a WPF application that has an overlay mode. In this mode, the whole application gets semi transparent. I'd now like to be able to click through this window to operate with elements behind it [other program UI's, desktop icons etc.] I…
user4474372
0
votes
1 answer

Angular.js click through json data array?

I have a small portfolio project I'm trying to build with Angular, I have the projects in my portfolio repeated using ng-repeat. But I just want 1 (the first) project to show. I have a little navigation in the sidebar and I want to be able to…
conor909
  • 1,475
  • 14
  • 29
0
votes
1 answer

ref code with link in html document

So for tracking purposes my company wants to put a ref code on each link that's clicked. So if I had a a ref code of ref=talkawalk12 and had to implement it to any kind of link how do I format that?
Bs3kg
  • 109
  • 1
  • 2
  • 13
0
votes
1 answer

How to click through a TextView inside a TableRow

My first question here! I need some help with clicking through my TextViews. They are inserted into a TableRow that is dynamically added to a TableLayout. They take up almost all the space (minus the padding) of the TableRows and because of that I…
0
votes
1 answer

IOS / Android: Can I retrieve clickthrough data from inside an app?

I'm trying to find a way to figure out how to retrieve clickthrough information to figure out which ad / link was clicked to direct a person to download it. Say we have the following situation: User sees an ad for the app. They click it It directs…
Tom Murray
  • 99
  • 10
0
votes
3 answers

Move form, click through Label vb.net

i have simple form without border and without title bar. There is only single label on it showing stopwatch. I need form to be movable by clicking mouse anywhere on form and then drag. I solved that, but the problem is when i click on form on spot…
msosa
  • 5
  • 1
  • 4
-1
votes
1 answer

In google analytics, why do I see xyz.com page visits under abc.com account?

I own abc.com Client owns xyz.com I manage google analytics accounts for both sites Every once in a while I see abc.com?utm_source=foo(...) clickthrough links / page hits under xyz.com account and vice versa. What could be causing this? I do not…
D. V.
  • 39
  • 3
-1
votes
1 answer

how to bind a RecyclerView item and its containing button clicked event together

I have a recyclerView and its items contain a button. And I wanna get the recyclerview item position when I click on the button. Here is the problem, when the button clicked the button clicked event is triggered but the recyclerview item under neath…
Anson Chan
  • 635
  • 5
  • 5
-2
votes
1 answer

How to get focus back on transparent (ClickThrough enabeled) Window

I am working on an application in which a window is transparent initially,then on a key press (say shift+tab) window should be Not ClickThrough. Code which I use to get ClickThrough is as follow: _hwnd = CreateWindowEx(WS_EX_LAYERED |…
Ahmad Raza
  • 1,923
  • 2
  • 14
  • 19
1 2 3 4
5