Dynamic resizing usually refers to on-the-fly resizing by a web server. This feature reduces development time and webmaster overhead by eliminating a common pain point in web development.

learn more… | top users | synonyms

0
votes
1answer
30 views

header containers expand/contract with images

I've been trying to tackle this for awhile and been ignoring it but now I gotta get it fixed. See, when the window is resized, whether larger or smaller, I want teh header area to proportionately ...
1
vote
1answer
59 views

Responsive Highcharts not sizing correctly until window resize

I'm using Highcharts within Zurb's Foundation framework for a class project. I have three charts within a section tab. One is within a 12-column div, the other two are on the same row within 6-column ...
0
votes
0answers
18 views

Hide Views And resize one when device orientation changes

I have a view in which a chart is displayed. This chart is rendered quite some time - the data is select-able in another View (table in which you can pick the items). I want to achieve something ...
3
votes
3answers
66 views

Resize and align a picture within a div

How can I resize and align a picture within a div? I need to show resized images on a 50x50px div. I also want them to be centralized on the div. I've made this image below to show exactly what i ...
3
votes
3answers
205 views

Determining the width of a webpage in inches

I have a CSS stylesheet that uses media queries to change how a page is displayed based on how many inches it is in width (for instance, if it is smaller than 4 inches or being displayed on a handheld ...
0
votes
1answer
48 views

How do I resize a path already closed on an HTML5 canvas?

I have a quadratic curve rendered on a canvas. I want to animate it by means of window.setInterval and changing it's dimensions (note not simply changing it's scale) thereafter. How do I retain an ...
3
votes
3answers
51 views

Use Javascript to size 2 buttons based on which contains the longest content

Scenario: User enters text "thisisabutton" for ButtonA User enters text "thisisalongerbutton" for ButtonB Both buttons dynamically adapt in size to fit text length, thus making them 2 different ...
0
votes
1answer
235 views

CSS/JS Dynamic Width & Font Size

I have a client site with a navigation feature that has been very tightly designed (and not by me): It consists of an unordered list, with three DIVs in each list item: <ul ...
0
votes
1answer
331 views

periodically report dom properties cross-domain with easy xdm

I'm attempting to dynamically resize an iframe's height based on its content height, using easyXDM. The code makes a call to check the iframe's body.scrollheight every 5 seconds, the theory being if ...
-1
votes
1answer
362 views

Imagemagick conditional resizing

I want to shrink the images only if they are bigger than the size 300X100 dimension, for example: If image is 250X200 dimension I want it with 250X100 dimension If image is 420X90 I want it with ...
0
votes
2answers
1k views

Using jquery, dynamically and proportionally resize an img

The problem: To make an image inside a plugin resize dynamically (H&W, proportionally) inside a div that gets shorter on window resize (there are essentially three areas: Top - static, bottom - ...
1
vote
2answers
251 views

Is boost::random::discrete_distribution dynamically resizable?

I cannot find much documentation of the Boost version of discrete_distribution. After much Google searching, I still can't even find a list of methods that this class has, and whether any of them ...
2
votes
2answers
777 views

Custom DirectShow Source Filter - Dynamic Resolution Change

I've asked a very similar question before for a video renderer filter. See here: Custom DirectShow Video Renderer Filter - Dynamic Resolution Change But this time, I need a solution for a source ...
0
votes
2answers
1k views

Dynamic horizontal sizing of jscrollpane container div

I have a centered liquid layout that has a help/intro section at the top of each page. I use jQuery to hide/re-show the help content based on the user's needs. Under this, I have the rest of the ...
0
votes
1answer
286 views

What exactly does 'dynamic text resize with javascript' mean

I just finished and turned in a homework assignment where the goal was to 'dynamically resize text with JavaScript styles'. We had a few paragraphs with a certain class on them, and those were the ...
0
votes
1answer
226 views

uiview resizing and manipulation problem for iphone 4G

I have written a code that I use for cropping purpose. The scenario is like, It has 4 uiviews 1) Top 2) Left 3) Right 4) Bottom Each uiview is resized according to the desired change and the main ...
1
vote
1answer
288 views

Immediate vs. Incremental Copying in Dynamic Hash Table Resize

What are the advantages and disadvantages of each? If I'm implementing a hash table where fast lookup time is crucial, it seems like I should use immediate, because that would occur only on insertions ...
4
votes
3answers
880 views

std::string and its automatic memory resizing

I'm pretty new to C++, but I know you can't just use memory willy nilly like the std::string class seems to let you do. For instance: std::string f = "asdf"; f += "fdsa"; How does the string class ...
0
votes
1answer
239 views

CSS: How do I arrange 3 elements into columns with the middle element filling in between them?

I have 3 elements I want to arrange into columns. I want the left and right elements to stay fixed widths and align to their respective edges of the page, but the middle element I need to fill in the ...
1
vote
0answers
164 views

Setting width of a panel based on the width of an element within it in WPF

I have a list box item that I wish to dynamically resize. However I don't want it to resize to the width of the largest element, but to the width of a specific element. This comes from the ...
1
vote
1answer
1k views

Dynamic sizing of SSRS Report

I have a report with 12 Tablixes on it. The user can pick and choose which one of these Tables and their associated data shows when the Report is generated. However, when chosing a subset of the 12 ...
6
votes
6answers
29k views

fancybox iframe dimension

In the fancybox homepage (http://fancybox.net/home) there is an example that opens an iFrame dimensioned as the 75% of the screen. I can't get it by modifying the width and height properties on the ...
3
votes
2answers
2k views

UINavigationController autoresizing views behavior

I've read in Apple's documentation about UINavigationController's resizing behavior and it hasn't been much of a problem until now. I have the following code to set up my UINavigationController's ...
0
votes
1answer
161 views

Question on dynamically sizing a button with textField

Hi Stackers! My question today is dealing with a dynamically generated button with a textField. I have the button copy in XML and I need to add a buffer of 10 pixels to either side of the textField. ...
8
votes
2answers
2k views

App Engine Cropping to a Specific Width and Height

I need to resize and crop an image to a specific width and height. I was able to construct a method that will create a square thumbnail, but I'm unsure on how to apply this, when the desired thumbnail ...
8
votes
1answer
14k views

How to auto resize JFrame according to content

I have created a custom JPanel that displays images (lets call it MyPanel), I have added this to JFrame's contentPane. I want JFrame to be resized automatically to fit the MyPanel when image changes. ...
0
votes
1answer
1k views

How to get an Applet in a table-row to size dynamically

I need to insert an applet into a table-row and get that table-row's height to dynamically resize according to the browser's window size. If I put fixed values for width & height in the td-tag, it ...