Skip to main content

All Questions

Tagged with
30 votes
3 answers
28k views

MultiDataTrigger with OR instead of AND

I am trying to set multiple DataTriggers on my Button. I did some research and found that MultiDataTrigger allows you to do this. I want the Visibility property of my Button to be set to false if the ...
CBreeze's user avatar
  • 2,945
15 votes
4 answers
96k views

how to use visible and invisible for a button in android

I want to make a button invisible, when i click another button then the invisible button will become visible and then perform onClick() actions on the visible button. What onClick() actions I can use ...
Ramakrishna's user avatar
  • 4,086
9 votes
1 answer
13k views

Adjusting Button Visiblity with MouseOver

I want to display a button only when the user puts the mouse over its location, once the mouse leaves the area, the button should go back to being Hidden. Here is my code for the buttons. <...
Ryan's user avatar
  • 97
9 votes
5 answers
82k views

Totally invisible html buttons

Use the following code: <html> <body> <input type="submit" style="color: transparent; background-color: transparent; border-color: transparent; cursor: default;"> </body> </...
VVWdefect's user avatar
  • 151
9 votes
1 answer
45k views

jQuery: Make a Button Visible When a TextBox Has Contents

Given: I have a textbox and a hidden button. Wanted: When the textbox is neither null nor empty, show the button. When the textbox is null or empty, hide the button. Question: How should I do this? ...
Jim G.'s user avatar
  • 15.3k
7 votes
2 answers
5k views

Showing a button on a selected datagridrow

I have a datagrid with a number ow rows. Every row has as DeleteRow-button. Only the row that is selected should have this button visible. As I see it there may be at least two solutions: a) binding ...
TheSjoerd's user avatar
  • 103
5 votes
4 answers
32k views

Set Button Visibility

I added a button in layout and obtained its reference in the activity: Button button1=(Button)findViewById(R.id.button1); button1.setVisiblity(View.Visible); Program crashes with this code. How do I ...
Steve's user avatar
  • 120
4 votes
1 answer
60 views

A button with comment having already clicked will not show up the next time user opens app

I want that a button with comment having already clicked will not show up the next time user opens app. I searched on google and understood that I should use shared preferences but I don't know how to ...
Mir Hussain's user avatar
3 votes
2 answers
2k views

In vuetify, how to display tooltip when button is disabled

I'm using button and tooltip component in my vuetify project. I want to display tooltip only when the button is disabled and I'm looking for a solution how can I do it correctly. For now tooltip is ...
xyz's user avatar
  • 109
3 votes
4 answers
3k views

Can I use .setVisibility(View.GONE) or should I just remove the View itself?

I have a layout and some dynamicly added buttons on it. Some times these buttons should just disapear, so i decided to use: myButton.setVisibility(View.GONE) is it a good way if I could have many ...
Adam Varhegyi's user avatar
3 votes
2 answers
5k views

Set textview visibility based on button click in Kotlin

Using Kotlin, I would like to be able to have an invisible Textview become visible on my activity when the user clicks a button. Ideally, I would like them to enter a particular code (i.e 1234) into a ...
Glenn Arnold's user avatar
3 votes
2 answers
2k views

Why isn't the MouseEnter event firing?

Further investigation has revealed that the problem is that the mouse enter event for the button isn't always firing. Most of the time it does, but either initially or after the button has been hidden ...
ChrisF's user avatar
  • 136k
3 votes
2 answers
2k views

CSS: Button Visibility Problem

I am working on a project with a video player. I want to add play/pause and skip buttons together but one of the buttons is always invisible, however working. The codes I am using: in .css file: ....
yaksoy's user avatar
  • 141
2 votes
5 answers
3k views

How can I make a button visible in one activity when clicking a radiobutton in another?

Im making a simple Androidgame , where the user selects an answer to a question (ind Activity1) by clicking a radiobutton. When the correct radiobutton is clicked, a button in the "Credits" (Activity2)...
user1154161's user avatar
2 votes
3 answers
155 views

Change button alignment of buttonA when buttonB is GONE

I have placed two buttons prev and next in a RelativeLayout. When I reach the last page of my app, I am disabling the next button using : next.setVisibility(View.GONE); The alignment of prev button ...
Vamshidhar R's user avatar

15 30 50 per page
1
2 3 4 5
7