1
vote
3answers
26 views
Method accessing protected property of another object of the same class
Should an object's method be able to access a protected property of another object of the same class?
I'm coding in PHP, and I just discovered that an object's protected property …
0
votes
3answers
32 views
Do controls in Firefox receive mouse events when their CSS visible property is false?
I'm having a problem with FIREFOX. I have an invisible list control over a drop-down control (html 'select'). Don't mind why, but I will say that the over-layer is a pop-up that …
0
votes
1answer
27 views
WPF - How do I default the Visibility of a databound Textblock?
Hi
This Textblock, defined below, shows when the window first loads because it has no Datacontext (and hence the converter code is not run) until an item has been selected from an …
1
vote
2answers
327 views
Visibility of script includes in an IFRAME
For example:
script.js:
function functionFromScriptJS() {
alert('inside functionFromScriptJS');
}
iframe.html:
<html>
<head>
<script language="Javascript" s …
1
vote
2answers
135 views
Does Interlocked provide visibility in all threads?
Suppose I have a variable "counter", and there are several threads accessing and setting the value of "counter" by using Interlocked, i.e.:
int value = Interlocked.Increment(ref c …
1
vote
1answer
59 views
jQuery: going through all visible rows of a table…
Hi,
I need to write some code that would loop though all rows of a table, then check a hidden input in each row to see if it contains a certain value and if so, set some values an …
0
votes
2answers
89 views
How can I hide a Paragraph in a FlowDocument?
Is there any way to use databinding to show or hide a Paragraph within a FlowDocument? (I want to use MVVM, but with a FlowDocument as my view.)
Paragraph doesn't have a Visibilit …
2
votes
1answer
63 views
Java instance variable visibility (ThreadLocal)
In the class ReentrantReadWriteLock is the following curious comment:
transient ThreadLocalHoldCounter readHolds;
Sync() {
readHolds = new ThreadLocalHoldCounter();
setSt …
0
votes
2answers
43 views
Have something loaded only when JList item is visibile
Hello,
i'm implementing a Jlist populated with a lot of elements. Each element corresponds to a image so i'd like to show a resized preview of them inside each row of the list. I'v …
0
votes
2answers
39 views
Does a custom control (ascx) get rendered regardless of whether visibility property is true or false
Does a custom control (ascx) get rendered regardless of whether visibility property is true or false.
It seems that when some controls have their visibility set to false, they do …
0
votes
3answers
78 views
How to let the server inform game clients about other nearby visible players in an efficient way?
I'm working on a multiplayer flash game. The server informs each client what other players are near the player. To do this the server has to check which clients are near each other …
0
votes
1answer
50 views
jquery Accordion : drop down list is not getting hided eventhought the master containers visibilty is false
I have a page where i am using jquery accordion to show /toggle some content.I have placed all the accordion content inside a div called divAccordionHolder.When the page loads init …
0
votes
1answer
73 views
WPF Grid - Auto sized column not collapsing when content Visibility set to Visibility.Collapsed
I have the following simpl WPf grid, two columns, a button in each column, the first column auto sized and a splitter to allow column resizing.
An event handler is set up on the s …
1
vote
4answers
745 views
Silverlight DataGridTextColumn Binding Visibility
Following my earlier post I am now trying now to bind the visibility of DataGridColumns to a VM notification property. MSDN suggests I should be able to do this with ease.
I alrea …
0
votes
1answer
33 views
Who needs to see who in a JPA application?
I have code using JPA and everything works fine in my development environment and in unit tests. But deploying my modules into the OSGi target environment, I regularly run into the …
