Questions tagged [clickable]

The tag refers to a graphics user interface item, which can be clicked using the mouse or tapped (in case of touchscreen application).

702 questions
3
votes
0 answers

D3.js Make the bars of a bar chart clickable (and make them link to an html page with same name as bar)

I am using the following bar chart template, code mostly unchanged (but with my own tsv file obviously) http://bl.ocks.org/mbostock/3885304 It works for me, with only one problem: When I click on the bar for -say- "A", I want to be taken in a page…
Kurkosdr
  • 31
  • 1
  • 3
3
votes
4 answers
3
votes
0 answers

Clickable Table Cells instead of Rows in Windows Universal App

I'm using a ListView to display a table of data in a Universal Windows App. Each row is clickable now, but i want each Cell to be clickable. This is my DataTemplate:
Friffle
  • 31
  • 1
3
votes
2 answers

OS X Shell - 'Clickable' script to erase files?

I use Latex to write my documents. Latex creates MANY auxiliary files to compile a document. I often times want to clean my working directory. While I worked on Windows, I used to keep a .bat file in the working directory that looked like this: del…
thiagoveloso
  • 2,537
  • 3
  • 28
  • 57
3
votes
1 answer

ios core plot increase CPTPlotSymbol clickable area

I am using core plot library for showing Scatter plot in my app. I am creating CPTPlotSymbol like this :- CPTMutableLineStyle *symbolLineStyle = [CPTMutableLineStyle lineStyle]; symbolLineStyle.lineColor = [CPTColor blackColor]; CPTPlotSymbol…
vntstudy
  • 2,038
  • 20
  • 24
3
votes
1 answer

Android: Prevent changing background color of text in TextView with ClickableSpan when touched

I just want to make some text clickable in TextView, so I used ClickableSpan, but the background color of text is changed when I touched it. This is my code: ClickableSpan clickableSpan = new ClickableSpan() { @Override public void…
Lee Jeongmin
  • 793
  • 11
  • 22
3
votes
1 answer

Android: Make a part of TextView's text NOT-clickable at runtime?

I used Android.text.style.ClickableSpan to make a part (Black) of a string (Blue | Black) clickable: SpannableString spannableString = new SpannableString("Blue | Black "); ClickableSpan clickableSpan = new ClickableSpan() { @Override …
Solace
  • 8,612
  • 22
  • 95
  • 183
3
votes
1 answer

How do you make a clickable sprite in SFML?

I've been looking through the SFML documentation for making clickable sprites, but so far I haven't found anything. Do you guys think you could help me out?
Skiddzie
  • 135
  • 1
  • 1
  • 4
3
votes
1 answer

Confused about android clickable, focusable true-false and their work

I have created a grid view follow this link Android - Gridview with Custom BaseAdapter, get clicked View at position It works fine. But I am confused at these two line in cell.xml android:clickable="false" android:focusable="false" It is false but…
Xplosive
  • 711
  • 3
  • 14
  • 26
3
votes
2 answers

Android - Clickable Widget - Working on emulator, but not on phone

I tried to create clickable widget on android. I was looking for solution on this site and I found it, but finally this widget is working only on the emulator - not on real phone. This is my code: AppWidgetProvider: public static String…
03Lonnger
  • 31
  • 2
3
votes
1 answer

Django - Python help_text as a clickable icon

I want to add help text to my forms. However, I want it to appear as a small question mark icon to the right of the input box, when clicked on, will show the help_text. I have a way of doing it through the html, but when I have more than one field…
3
votes
1 answer

How to allow clicking on a pixbuf (image) in a treeview?

I want to make my gtk.CellRendererPixbuf in the treeview clickable so that I can call a function when user clicks on it. Is this possible and how can this be done? I'm working with PyGTK, but answers in C or PHP or anything else would be acceptable.…
elwc
  • 1,197
  • 2
  • 15
  • 25
3
votes
2 answers

jQuery - css disable div on higher Z-index

My Question: Is it possible to disable a div (Z-index 2) so it still remains visible and make it "unnoticeable" by the mouse so I can achieve mouse actions thru it (mouseover's, clicks) to the enabled divs below it? Meaning you can click the div…
Papa De Beau
  • 3,744
  • 18
  • 79
  • 137
3
votes
3 answers

Link within div is not clickable when Jquery hide() and show() are used on containing div

I am having a problem with a link that sits inside of a div on my page. Currently, when the link is clicked, nothing happens. I do not understand why, but I imagine it has to do with the use of hide() and show() on the containing div which I will…
Lindsay Rose
  • 60
  • 1
  • 7
3
votes
1 answer

Scrollable textview black when pressed?

I created a textview that if the text is to long it will make it scrollable. However if you click on it or hold your finger on it, it will turn black like its been clicked. does anyone know the code to make it not click-able but still be able to…
NightSkyCode
  • 1,141
  • 2
  • 16
  • 33