Greetings,
I have a list of user comments on a page, with a next button which makes an Ajax call to get the second set of comments.
The problem is, the height of the comments div temporarily becomes very small while the loading bar is in place. This makes the user need to scroll back down to see the new comments
The issue can be seen...
I have an image on the page:
<img id="foobar" src="emptySpace.gif" />
The image has an absolute position of left: 0 and top: 0 in a .css file.
When I try this in JavaScript onmouseover, the height and width don't change. What am I missing?
var image = jQuery("#foobar");
image.height(500).width(500);
What gives?
...
Hi
I am trying to set row height in QCalendarWidget. I want to have 3rd week of month size bigger than other.
setRowHeight doesn't work:
Source code
QCalendarWidgetMy (QWidget *parent=0) : QCalendarWidget (parent)
{
view2 = qFindChild(this);
}
calendar->view2->resizeColumnsToContents();
//calendar->view2->setShowGrid(tr...
Hello again, I am back with more problems on my jQuery animated splash / website.
You can see the splash which is working in most browsers at voidsync.com/test. The problems I am encountering with IE are the html, body, or #CONTAINER not adjusting to longer content such as in the Services or About pages - you will see the footer does no...
i have an aspupload component that deals with my videos.
on the page shoing the videos i need the width and hiehgt to be set dynamicly by the ratio of the file.
how can i get it from avi? mov? wmv?
i know that avi header format is there but how to use it from asp?
and what about the other formats
...
I have a BorderContainer with several objects inside of it. I want it to fit snugly around its own contents, but it doesn't. It seems the default size of a BorderContainer is 112x112. That is so wierd considering no other containers have that default size. Is there a way to set the width and heigh properties to "auto" or something like t...
I'm attempting to get the height of an element using jQuery, but am receiving some unexpected results. Here's the code:
$(function() {
var contentheight = $('#subpage-content-small').height;
alert(contentheight);
});
Where #subpage-content-small has these CSS properties:
#subpage-content-small { width: 400px; float: left; m...
I have a silverlight app which can be installed as out-of-browser.
I've defined the Height and Width in the main UserControl.
I've defined the same Height and Width in the OutOfBrowserSettings.xml file.
But the user can still resize the out-of-browser frame window. How do I prevent this?
...
Hi,
I am loading a listview dynamically. I have set a .9.png image as row
background image. The main purpose of using .9.png image was to extend
the height of the image dynamically according to the contents of the
listview.
But, the image is not getting extended. The contents which can be
displayed within the height of the row are bein...
building a simple mobile site for a client.
working ok but when you open the menu or the info window the screen rescales everything to the height of the content.
but i'd like it to stay the same and just make the user scroll down the text.
http://www.moxonarchitects.com/mbl/
any help appreciated!
meta tag im using is;
<meta name="v...
There is <dl> with padding-top
<dl id="posters" style="padding-top: 150px;">
<dt class="active">text</dt>
<dd class="active"><a href="#"><img width="150" height="150" src="..." /></a></dd>
<dt>text 2</dt>
<dd><a href="#"><img width="150" height="250" src="..." /></a></dd>
<dt>text 3</dt>
<dd><a href="#"><img width="150" height="350" src...
I need to implement custom ListField which has height variable for every each row.
Selected row should has different height then other rows.
...
I need a div with a height of exactly 1em minus 1px. This can be achieved in most browsers like this:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style type="text/css">
.helper {
/* background-color: black; */
position: absolute;
...
Hi,
I have a listview in which there should be different divider height
between different rows. So, how can we set the divider height
dynamically?
Suppose, I have 10 rows and there should be a divider height of 5
between first 2 rows and then there should be a divider height of 1
between next 5 rows and so on.
Can someone let me know ...
Hi,
I have a listbox inside another list box, in inner list box listboxitems height may grow or shrink. My problem is that when the inner items shrink the outer list box doesn't re-render its height. Thus - stays with the previous height before the inner list shrinked.
I have tried so many things here, among Invalidate of all types, s...
Hi Guys,
I have a div on my website that should be the height of the window.
This is what i got:
$(document).ready(function() {
var bodyheight = $(document).height();
$("#sidebar").height(bodyheight);
});
However, it does not automatically change when the window is resized? Does any body know how to fix this?
Thanks
...
I'm using the Sortable/Portlets UI Code.
Is it possible to auto-resize the Containment Height's. Bascially I have a DIV that acts as a container with a black background, when I sort these elements I want the container DIV height to change to match.
OR is it possible to stop the bottom sortables from having sortables placed underneath t...
I have a problem with displaying a set height in ie.
In my css I have set a height for my sidebar div as 2150px; which it displays fine in firefox but does not display the full height in ie.
How can I get ie to display the height I have set in ie?
Thanks in advance
The source code is below
#sidebar_newspr{
width:160px;
min-heig...
The problem, is that I have a content div which stretches its container height-wise (container and content div have auto height).
I want the background container, which is a sister div of the content div to stretch to fill the container. The background container contains divs to break the background into chunks.
The background and c...
Hi,
I have loaded swf using following code,
var loader:Loader = new Loader();
loader.load(new URLRequest("XYZ.swf"));
addChild(loader);
How do I control height and width of this loaded swf.
I tried
var mc = MovieClip(loader.loaderContentInfo.content);
mc.width = 320;
mc.height = 240;
this gives null object error.
...