0
votes
0answers
2 views
Getting the visible rect of a zoomed UIImage on the screen
I have a UIImageView inside a UIScrollView. The UIImageView contains a UIViewContentModeScaleAspectFit content mode. I've also set the content size of the UIScrollview to the frame …
0
votes
5answers
355 views
CSS problems: with custom ul,li dropdown navigation in ie, especially with the ie6 overflow:visible bug
The essence of the ie6 bug (dropdown entries must be truncated via overflow hidden to prevent ie from incorrectly expanding instead of acting as overflow:visible) can be seen in it …
1
vote
2answers
40 views
asp.net visibility of an element in master page
Hi,
I need to set visibility for an option called SVN in a navigation bar for a web form as false.
this is its code in the master page....
if (page.CurrentUser.Permissions.SVN()) …
3
votes
1answer
48 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 matchin …
4
votes
4answers
238 views
Why is my hidden <tr> not really hidden ?
Hi,
I have this simple html markup generated from classic asp:
<table>
<tr class="trClass">
<td>Hello </td>
</tr>
<tr class ="trClass"& …
0
votes
2answers
244 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. …
2
votes
3answers
185 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 bu …
1
vote
1answer
44 views
Make programmatic range selection visible to the user?
How can I make a programmatical page selection visible to the user, as if it was selected by the user?
var range = document.createRange();
var startPar = [some node];
var endLi = …
1
vote
1answer
38 views
WPF application visiblity afte remote desktop
Hi, i have a WPF application that sits on top of all other windows. 99% of the time it works perfectly however if i dial into my computer from another location using remote desktop …
0
votes
1answer
148 views
How to add some custom CSS for the last child only if visible with Jquery?
Hi Guys,
I am allowing users to make parts of a list hidden/visible etc.
Now here is my list:
Basic list, but the very end list item has some custom CSS "border-bottom: none" - …
0
votes
0answers
56 views
visible false in OnPreRender method
I have a div that sometimes it is visible, sometimes not.
So, I put the code on OnPreRender method, div.Visible = false.
What happens is: When the property "EnableViewState" is tru …
0
votes
0answers
177 views
make child control visible=true when parent control visiblity=false in c# win forms
I am working with a ToolStripMenuItem in winforms.Setting
splitLineItemToolStripMenuItem.Visible = true;
does not make it visible as the container ContextMenuStrip visiblity is …
0
votes
1answer
230 views
Always show FooterTemplate, even no data
Is there a short way to make a FooterTemplate (in a GridView) always visible, even when DataSource is empty?
0
votes
2answers
654 views
[WPF] 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 …
1
vote
5answers
930 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 …
