Sometimes (I didn't figure the exact scenario), WPF tooltips are displayed on top of other windows, even when the app window is completely hidden. Clicking on the other window doesn't make it disappear.
Is anyone familiar with this?
Regards,
Yaakov
...
I have been unable to google an acceptable solution to this that can be applied to my project.
My app is a graphing tool that has three tabs; one for the graph itself and the other two are for browse/search functions for things that can be added to the graph. All tabs are navigation controllers.
The tab for the graph itself, when in po...
I have two traits, one extending the other, each with an inner class, one extending the other, with the same names:
trait A {
class X {
def x() = doSomething()
}
}
trait B extends A {
class X extends super.X {
override def x() = doSomethingElse()
}
}
class C extends B {
val x = new X() // here B.X i...
I'm testing my pages in different browsers.
Opera puts a vertical scroll bar on a page. I added an overflow:hidden to the div (after trying Opera), but the scroll bar is still there. How do I get rid of it (you don't need the scroll bar to view the page).
Thanks
...
Hi,
I'm not finding a way to understand and fix this and I've done a lot.
I've got a script, wish is a simple form, that sends a file trough POST. The second file, process the info.
By default, I give to the user a few fields, one of them being a input field of type "file" and there's also, a few "hidden" one's, that gives me values t...
I have the following task:
Input:
A 3D scene comprised of a set of cuboids. Could be broken down to a set of triangles.
A description of a camera: position, direction, focal length.
Output: 2D wire frame projection of the scene as a set of lines. Important: Hidden lines removal should have been applied.
Platform: Web app running on G...
In the hope of tempting Googlebot with fresh content, I've implemented a homepage news ticker which displays the 20 most recent headlines on our site.
The implementation I have chosen is a <ul> with each headline being a <li>
Initially all the <li> elements have no style but Javascript kicks in on page load and gives all but one of the...
I have a page that creates an associative array, then passes it as a hidden value to a new PHP page. I have a foreach loop waiting to iterate through it but it coughs up an "invalid argument" error, as if the page doesn't know the value it's working with is an array (Despite "print" showing simply "Array"). This is essentially what I hav...
Can the browser feature of contrl+F to find text be integrated with text in popup windows.
I'd like to have some scientific reference information given when someone hovers over a species name in a web page. Generating the popup, tooltip style text is no problem, the problem is that anyone using Ctrl+F won't be able to find it, or if I ...
I'm not all that familiar with jquery so I'm not quite sure how to do this. Basically, I want a block of html to stay hidden at the top of the page with a ~3px edge sticking out (something to mouseover), and when you mouse over it, the hidden section slides down.
Basically I want it to work like the RDP full screen menu bar works. Any...
Hi,
I've written a program in C++. It's just using the console to have it as portable as possible. Unfortunately, many Windows-Users seem not to understand how to use the program (Linux Users are just fine with it :) ). So I'd like to write a GUI for that program. As this needs to run on Windows only, I'd like to write it in C#.
But I ...
Hey,
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 do this I tried saying, if a certain div is shown, the background colour of a certain button changes. However, you can see there tha...
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/)...
Elements can be considered hidden for several reasons:
An ancestor element is hidden, so the element is not shown on the page.
What I want ...
Unfortunately form.reset() function doesn't reset hidden inputs of the form.
Checked in FF3 and Chromium.
Does any one have an idea how to do the reset for hidden fields as well?
...
I've got a datatable with a hidden column. I want to apply a class to a visible column based upon the contents of the hidden column but I cannot make it work. I've tried enabling bSearchable to no avail. It doesn't seem as though I can access the hidden data. Any ideas greatly appreciated.
...
I had to create a jQuery-accordion for a form.
It works as it should on FF3, Chrome and Safari, even on IE8.
But when I view it in IE7 there is this weird bug:
I click on the accordion-header and the accordion opens, but the content is not visible.
When I hover over it though, it shows up. It has no validation errors nor javascript error...
Hi, I've been struggling with this problem..
There is a wrapper div and it contains 3 vertical column divs with full of texts,
and this wrapper div has red background color so that it can be a background of
the entire texts.
<div id="content_wrapper">
<div id="cside_a">
// massive texts goes here
</div>
... // two ...
Hey all. I'm trying to set a value on a hidden form element based on a link that is clicked. I figure the best way to go about this is to pass along the anchor title attribute as the value for a particular hidden form element. This hidden form element value will need to be updated depending on the latest link that is clicked. I've scoure...
I have a web page that has content which extends past the right edge of the browser window. I set overflow-x: hidden on <body> to turn off the bottom scrollbar, but I can still scroll horizontally with the trackpad, which is not what I want.
Is there any way to prevent the browser from scrolling horizontally?
As a side note: Safari 4.0...
Sorry if this has already been solved elsewhere but my searches have been able to turn up nothing and my attempts at solving the issue myself have made even less progress. :P
Put quite simply I have a table that is using the jquery tablesorter and it's zebra widget.
In this table there is a hidden column. I've so far been able to make i...