visibility Questions

1

Solved

I am encountering a puzzling error when creating a tuple-like struct somewhere in my Rust project. The error I boiled my issue down to the following snippet: mod parent { pub struct X(u32); mod ...
Oe asked 17/9 at 11:20

4

Solved

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...
Briar asked 28/3, 2012 at 19:35

4

Solved

The Flutter Visibility Widget allows everything contained within it to be both hidden and disabled. However, I want to animate the opacity as well as invoke visibility. Using the Visibility widget ...
Lachlan asked 27/10, 2021 at 10:54

2

Solved

I was wondering if it is possible to hide a control on a view if the property to which the control is bound does not exist in the view model. For example, if I have the following: <CheckBox Con...
Householder asked 27/3, 2012 at 16:36

1

In my app I'm using several surface views (for displaying videos and google maps), displayed on the screen in the same time. Now I have to add the possibility to change the configuration (position...
Euthanasia asked 22/5, 2013 at 12:57

3

Solved

The following problem has me stumped SELECT string_agg(e.enumlabel, '|') as enum_value FROM pg_type t JOIN pg_enum e on t.oid = e.enumtypid JOIN pg_catalog.pg_namespace n ON n.oid = t.typnames...
Candless asked 3/3, 2012 at 3:3

2

I am using a Linkable to highlight web links, phone numbers, and email addresses from what the user types into a textfield. The first problem is that the linkable does not take textfield in, it onl...
Duhamel asked 26/6, 2021 at 8:56

7

Solved

Is there an option to hide a GridViewColumn somehow like this: <ListView.View> <GridView> <GridViewColumn Header="Test" IsVisible="{Binding Path=ColumnIsVisible}&quo...
Dentelle asked 8/9, 2009 at 8:54

4

Solved

I understand that ViewModel shouldn't have any knowledge of View, but how can I call MediaElement.Play() method from ViewModel, other than having a reference to View (or directly to MediaElement) i...
Anachronistic asked 17/5, 2012 at 7:46

66

Solved

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?
Mammiemammiferous asked 7/10, 2008 at 13:3

9

I have a loading indicator that I need to wait for to disappear before doing my assertions. I've seen some use the following, but it does not seem to work for me and also I don´t want it to b...
Aztec asked 7/12, 2018 at 15:22

18

Solved

I'm using a BooleanToVisibilityConverter in WPF to bind the Visibility property of a control to a Boolean. This works fine, but I'd like one of the controls to hide if the boolean is true, and show...
Tunic asked 10/2, 2009 at 22:41

8

Solved

How to hide a button, a label or a grid cell on iOS and show it on android, I have a xamarin.forms app (portable), I know that I have to use on platform but how to access the visibility of the cont...
Weathers asked 15/2, 2017 at 9:57

2

Solved

I made function 'warn' in line 17 whose parameter is enum Shape. Why is it warning about visibility scope and how can I fix it? import java.util.Scanner; public class AreaCalculator { enum Shape...
Polybius asked 18/9, 2023 at 8:43

4

Solved

If the visibility property of the style of an HTML element is set to hidden, is it still clickable? When the display property is set to none, the element is not even part of the DOM tree, so that ...
Unpremeditated asked 14/4, 2011 at 6:47

1

I'm having troubles with some animation in a recycler view. I do the relevant measurements in onViewAttachedToWindow: override fun onViewAttachedToWindow(holder: PairingViewHolder) { super.onViewA...
Ytterbia asked 16/10, 2020 at 15:18

1

I have a recyclerview with 2 or more viewholders, 1st Viewholder is just top heading banner 2nd vlewholder is for booking widget which has 3 dropdowns/detail menus including CalendarView -- All in...
Sendoff asked 27/7, 2023 at 21:11

8

Solved

Other than self.class.send :method, args..., of course. I'd like to make a rather complex method available at both the class and instance level without duplicating the code. UPDATE: @Jonathan ...
Antung asked 21/8, 2008 at 18:2

2

I'd like to hide the toolbar visible in the screenshot: I can hide the menu bar by going into full-screen mode, but I haven't been able to get rid of the bar with the file name, run button, split,...
Vaccinate asked 1/11, 2022 at 7:49

13

Solved

I wish to check that a DOM element is visible with Puppeteer and pure JavaScript (not jQuery), how can I do this? By visible I mean that the element is displayed through CSS, and not hidden (f.ex. ...
Beller asked 8/12, 2017 at 10:43

2

Solved

I have defined a layer-list with a couple of items on an xml file. The items are displayed o.k. I want every five second or so one of the layers to become invisible. It works o.k. for a simple tex...
Winny asked 9/3, 2011 at 16:15

7

Solved

I have few div's placed underneath each other and I'm using css visibility to fade them in and out. The reason why I use visibility is so that the div's don't move place. For fade In I'm using: ...
Epi asked 8/9, 2011 at 15:1

13

Solved

I have a glsurface occupying the full screen. At the click of a button I want another layout to appear (settings type of thing). If I start with the overlay being visible, I can make it invisible a...
Derril asked 4/3, 2012 at 16:40

4

Solved

How can I hide a column in a WPF DataGrid through a Binding? This is what I did: <DataGridTextColumn Header="Column header" Binding="{Binding ColumnValue}" Width="100" ElementStyle="{Static...
Hod asked 27/2, 2014 at 15:58

4

Solved

What are differences between Visibility.Collapsed and Visibility.Hidden in WPF?
Peltast asked 20/5, 2009 at 8:10

© 2022 - 2024 — McMap. All rights reserved.