Tagged Questions
The visible tag has no wiki summary.
12
votes
2answers
2k views
Android: how to check if a View inside of ScrollView is visible?
I have a ScrollView which holds a series of Views. I would like to be able to determine if a view is currently visible (if any part of it is currently displayed by the ScrollView). I would expect ...
6
votes
2answers
761 views
How to get the “real” value of the Visible property?
If you set the Visible property of a Windows Forms control to true, that property still returns false if any of the control's parent windows are hidden. Is there a way to get the true, underlying ...
5
votes
3answers
2k views
Android - how update widget often but only when it is visible?
I'm going to create widget which needs to update its content every minute (it shows time-related data).
However, there is no need to update widget if it is currently invisible, which means:
screen ...
5
votes
4answers
1k views
Why is my hidden <tr> not really hidden?
I have this simple html markup generated from classic asp:
<table>
<tr class="trClass">
<td>Hello </td>
</tr>
<tr class ="trClass">
...
5
votes
6answers
4k views
jquery selection of elements with no visible children
Here's my goal: do something on an element, an <optgrooup>, if all of its children are invisible.
My code below outlines the in red if it has any invisible children. But I want to do so only ...
4
votes
3answers
121 views
Get the first and last visible element in a scrollable div
I have list of thumbs in a scrollable div, animated with next/prev button. Each click on "next "button should match the attribute of the first visible element. Each click on "prev" button should give ...
4
votes
2answers
721 views
How to prevent my C# winforms application from stealing focus when I set the visible properly to true?
I've got a C# winforms application that runs in the background, listening for hotkeys to be pressed. When a hotkey is pressed, my form makes a brief appearance. The form is always running, but set ...
4
votes
3answers
1k views
How can I tell if a Delphi control is currently visible?
I need a way to for a custom control (descended from TCustomControl) to tell if it is currently visible. I'm not talking about the .Visible property; I mean whether or not it's actually being ...
3
votes
2answers
77 views
Show/hide form depending on hyperlink clicked
I have made 3 different forms and each form contains a div with the same classname as in the other forms. (so they overlap)
I also made a link section with three links to choose which div/form should ...
3
votes
2answers
110 views
Visible elements in a WPF canvas
I have a WPF Canvas and a lot of Shapes (StreamGeometry / Path) added to it. I have ScaleTransform defined to zoom into specific region.
I have zoomed into a arbitrary space in the canvas and the ...
3
votes
2answers
163 views
jQuery Hide Element and isVisible Issue
I am basically trying to do a form validation. Evertyhing works fine. Except one thing. First, here is my code:
$('#submit_btn').click(function(){
...
3
votes
1answer
323 views
Prototype: Covert this visibility checking script to prototype syntax?
How do I convert this small script to Prototype:
Basically I need to check if an element is visible or not, I do with jquery this way: $('id_element').is(':visible'); but I dont know how to do it ...
3
votes
1answer
66 views
check if formgroup is visible
I have a coldfusion flash form. (Unfortunately don't have time to change to html/javascript) In the form I have a formgroup.
I would like to be able to use actionscript to detect if the formgroup ...
3
votes
3answers
2k views
jQuery detect visible but hidden elements
This seems like it should be fairly easy - but I can't find the right selector for it
According to the docs (http://api.jquery.com/hidden-selector/ and http://api.jquery.com/visible-selector/)...
...
3
votes
2answers
811 views
C# UserControl Visible Property
How can I override a UserControl Visible property ? Or how could I determine within a control when it changes its Visible state ?
Later edit: I need it to work in .NET CF 3.5.
Thanks.
3
votes
1answer
163 views
How to tell if a .Net control is visible using windbg
I got a crashdump where we're debating whether a control was visible to the end user or not. Looking with !do I can't see any explicit field that holds the true/false value matching up with the ...
3
votes
1answer
1k views
What is the best way to determine if a window is actually visible in WPF
I'm trying to toggle the display of a small window based on the click of a notify icon in a system tray app. This is simple enough to implement, however when the small window is displayed and another ...
2
votes
2answers
62 views
How is it possible to check if JOptionPane is visible?
I have a JOptionPane option dialog which is called in my application in case there is an invalid file. It then takes input for the right file.
This is fine as long as the application is running in a ...
2
votes
1answer
252 views
Using jQuery to find current visible element and update navigation
First time user here. I am usually capable of finding answers for questions but I am having a difficult time figuring this one out.
The Goal:
I have a single page layout with a sidebar navigation ...
2
votes
1answer
48 views
How can I know what rows are visibile within a WPF DataGridView?
Is there a way to determine what data grid rows/cells are being show in the WPF DataGrid within the scrollviewer's bounds at any one time?
2
votes
2answers
91 views
Why does toggling the Visibility of my Form disable my KeyDown event?
I am creating a grid of Panels at runtime and it is very ugly when it resizes due to being created by a loop. In order to "hide" this operation, I have called
this.Visible = false;
before my loop ...
2
votes
3answers
193 views
Hidden Object But Still Have a Place Reserved
I'm trying to make two forms that aren't displayed at the same time. The first one stays visible when the page opens, but if the user select, the first one should be hidden and the second one might ...
2
votes
1answer
290 views
Get which process/window is actually visible in C#
I have a list of all open windows, the ones in the windows taskbar. What I want to do is to remove the ones that are not visible from the list.
What I mean is, if a window is hidden by another one, ...
2
votes
2answers
306 views
How to make a panel appear when the mouse moves over it? delphi
How can I make a panel appear with everything that is in it when I move my mouse over its location?
When I move it off again, it fades back out?
Doing it when it is visible is not a problem (except ...
2
votes
1answer
499 views
Alternative to overflow-y in CSS?
I'm creating a calendar and need to replicate the behaviour I would get with
overflow-x:visible;
overflow-y:hidden;
for browsers that don't support these css attributes. Is there some kind of ...
2
votes
1answer
239 views
How to get only the visible part of a window (Windows, gdi32, user32, etc)
I want to get only the visible part of the window in windows, as a region.
Want to get only the area that is seen by the user.
Programmatically, of course. Here is an example. I have the following ...
2
votes
7answers
852 views
this.Visible is not working in Windows Forms
I have a problem. I need to hide my window at window load. But
private void Form1_Load(object sender, EventArgs e)
{
this.Visible = false;
}
is not working. And property ...
2
votes
2answers
189 views
Way to determine the visible size of the web page
Is there a way for knowing what size was the visible portion of a page?
Are there any services that provide this? I mean, not just screen resolution, but available browser area. When a user has a lot ...
2
votes
2answers
178 views
Width not changing when Size changes
I've been doing this for years. But now it's just not working.
private void Form1_Deactivate(object sender, EventArgs e)
{
this.Size = new Size(30, 29);
txt.Visible = ...
2
votes
3answers
157 views
setting something disposed or invisible java
changed the project since its working now. kinda.
the image still isnt changing.
package icnon;
import javax.imageio.*;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public ...
2
votes
3answers
2k views
Jquery if visible conditional not working
I have a page going here that uses jQuery: http://treethink.com/services
What I am trying to do is, if a slide or sub-page is shown in there, change the background colour and colour of the button.
To ...
2
votes
1answer
76 views
How can I scroll on scaled control?
I need a zooming mechanism. So I found one on http://stackoverflow.com/questions/850554/zoom-control-to-wpf-form which seem to be suitable for me.
I have made a slider and apply ScaleTransform.
My ...
2
votes
2answers
3k views
c# How to hide a row in a DataGridView with DataSource
I have a datasource (BindingList) with many Users, but there are some users I don't want to display in my DataGridView. Is it possible to hide them. I can't find events that works.
RowsAdded ...
2
votes
3answers
1k views
Winforms button: Does Visible = false imply Enabled = false?
Simple question: I have a WinForms button, and I want to make it both (conditionally) invisible and disabled (to be sure that if someone clicks in the space where the invisible button lives, it won't ...
2
votes
2answers
3k views
Calculating number of visible items in ListBox
I have a class called Book;
class Book
{
public string Name { get; set; }
public string Author { get; set; }
public int PagesCount { get; set; }
public int Category { get; set; }
}
The ListBox ...
1
vote
1answer
29 views
How to make items invisible in actionscript
This may sound like a simple question which I'm sure has a simple solution, but basicaly... I'm making an actionscript game, and I want the player to be able to click on a book and then for a key to ...
1
vote
0answers
58 views
JQuery - :visible is not working
I have a div with an id, whose preferences are stored in a .css file. The div is hidden in the beginning (display:none) and when the user types something into a form I show the div with ...
1
vote
1answer
68 views
matlab: how to set dynamically invisible what is visible
I have a simple question about matlab using interface.
I found that if I first declare an object (for example a table with the command UI table) NOT visible and after I make it visible, it works i.e. ...
1
vote
0answers
29 views
Multiple Elements Visible--Need function to determine which is higher on page?
I am using the following code, which I garnered from another post from a few years back, to identify elements that are fully visible in a user's browser:
function isScrolledIntoView(elem)
{
var ...
1
vote
2answers
107 views
Is the Taskbar Visible?
I need to know if the Taskbar is Assigned but the "Auto Hide Taskbar" has been checked and the Taskbar is temporarily hidden. I have a Function the returns the Height of the Taskbar if it has been ...
1
vote
1answer
91 views
How to make a non-XML PopupWindow appear on the screen in Android
I've created a class that generates a PopupWindow based on parameters fed into it. I believe this will suit my needs better than manipulating XML-based content for my PopupWindow.
Creating the window ...
1
vote
1answer
57 views
How do I select an element that has no visible siblings using jQuery?
I know I could do this with some extra javascript, but I'm guessing there is a way to it using just a jQuery selector.
The element(s) I'm looking for will have siblings that have just (on the ...
1
vote
1answer
135 views
visible property in PyQt Animation Framework and State Machine
Sorry about my broken English.
I am using a state machine with animations.I want to implement the fade out/in effect.
state1:
opactiy = 0
visible = False
state2:
opactiy = 1
visible = True
state1 ...
1
vote
1answer
126 views
Watin Visible of Text
I'm Using Watin tool in C# to find a text is available in webpage/URL. Using the code:
bool flag = browser.containsText("Some Text");
But returns true, but the text("Some Text") is hidden in page. ...
1
vote
1answer
160 views
Selenium IDE - Verifying hidden/visible verification messages?
There's a webpage I'm trying to test that has multiple textboxes. Each textbox has its own specific validation message that is hidden.
Before an incorrect value is entered, I am use ...
1
vote
1answer
174 views
Android load only visible elements of ListView
I'm using Lazy Loading List in my application and I need to load only the visible elements of ListView.I've search over the internet,tried a lot of things but still cannot get the things to work.Can ...
1
vote
1answer
56 views
Android: View with 0 height and memory consumption
Let's say for example that I have a view and I have an algorithm that causes the View's height to become 0 when it scrolls off screen. Does this View still consume the same amount of memory as it ...
1
vote
1answer
77 views
jquery count :visible doesn't work in IE7
I have created a tool using jQuery that will show certain table rows depending on if certain checkboxes are selected. I am trying to have text that will display "3 Posters are required" for example. I ...
1
vote
1answer
71 views
Visibility Property resets after exiting Load() subroutine (MS-ACCESS 03, 07, 10)
I have a form that opens at startup (frmStart). That form has some code in the Load method which decides whether the user should see the switchboard (admins) or an alternate form (regular users).
I ...
1
vote
1answer
148 views
jquery get text currently shown (ie.not just visible)
Is it possible in Jquery/jscript to get text that is currently being shown on the screen, ie. Don't get text that has display visible or similar type of property but isnt currently shown on the screen ...