Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [visibility]

Visibility is an attribute of an object. It may refer to the concept of having something visible (or not) on the graphical interface, or a symbol visibility in linkage. This tag should not be used in place of the more specific tags [memory-visibility] or [class-visibility].

visibility
0 votes
0 answers
8 views

the softkeyboard makes view disappear when it pops up

I have this situation when i get the focus on the inputText, therefore triggering the softkeyboard to show up, the second text and the second button disappear. I tried to examine with the debbugger, ...
8699 votes
67 answers
3.2m views

How do I check if an element is hidden in jQuery?

How do I toggle the visibility of an element using .hide(), .show(), or .toggle()? How do I test if an element is visible or hidden?
3 votes
1 answer
659 views

How to make an item visible in my binary crate targets but not any other crates?

I would like to generate multiple binaries using a lot of the same common code. If I write everything in src/main.rs I can simply mark items at pub(crate) and access the code without exporting it. ...
0 votes
1 answer
77 views

How can I make an element stop glitching if it gains visibility when another element behind it is hovered?

I have two divs; let's call them div 1 and div 2 and the one on top of the other is set to visibility:hidden: Basically the info div is supposed to appear whenever you hover the other one. That part ...
3 votes
5 answers
209 views

Hiding record from child packages

package Parent is type Item is private; function Get return Item; private type Item is record Value : Boolean; end record; procedure Set (Object ...
5 votes
1 answer
343 views

Make internal declarations visible to other modules in Kotlin

I have a Kotlin project that uses Gradle for building/testing. In Kotlin you can mark dependencies as internal, for example: internal class MyClass : MyInterface Now, I also want to run some ...
0 votes
0 answers
27 views

Error in {task 1 failed - [readValues] cannot read values in R doParallel "foreach"

I am trying to speed up an intervisibility calculation between landscape viewpoints (X, Y, height), using a rasterprofile and line of sight functions over a digital elevation model. I ran a large-...
1 vote
1 answer
126 views

Cypress testing issue: Cart modal not visible

I'm forwarding the code containing the exemplary working steps, finishing with clicking the Add to Basket button. Steps after that should consider that a cart modal appears, and Cypress should click ...
0 votes
1 answer
52 views

C# When I open Panel first time it doesnt trigger VisibilityChanged WinForms

I have a UserPanel class that has Controls in it buttons,Labels ect. When the Panel is created at runtime it passes to the Constructor of Form1 (this) so I can use some methods and I have a ...
1 vote
2 answers
2k views

Private property in parent class can be accessed and re-assigned through the instance of child class in PHP but protected one can't

I am very confused why $produk1->harga = 500; can still make a change (or re-assign the value 500) to private $harga property despite private $harga in class Produk has PRIVATE visibility ? $...
0 votes
3 answers
63 views

CSS Display None or Visibility Isn't Working

I have a list of links that are horizontal on the homepage of my site. However, while making the site responsive once the screen gets too small, like for mobile devices I want to change it to where ...
1 vote
2 answers
10k views

div section visibility true/false on certain pages asp.net

im a newbie in asp.net and i have a issue. i need to make my div section visible only on some pages. i placed attribute style:(not with " on start of course) <div ID="id1" class="grid-box width33 ...
6 votes
4 answers
4k views

Determine visibility / real z-index of html elements

Is it possible to determine if an html element is visible to the user? Example A page has an input field with a datepicker. If the user clicks on the input field, another div appears which allows ...
0 votes
1 answer
99 views

Set a timer for the visibility of a button

This is purely theoretical put let's say once I put a timer for a button to appear only 86400 second later (like 24h), will it the count down continue after the app is shut down ? Can the user close ...
0 votes
2 answers
68 views

Component not visible after using "setVisible(true)" on it and its parent

I've got a Java 8 app with a couple of JTextFields and a JButton to log into a database and a JTextArea inside a JScrollPane to display errors. Both the textarea and the scrollpane have to be hidden (...

15 30 50 per page
1
2 3 4 5
213