Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
9answers
21k views

Resize jqGrid when browser is resized?

Is there any way to resize a jqGrid when the browser window is resized? I have tried the method described here but that technique does not work in IE7.
24
votes
4answers
37k views

WPF: Setting the Width (and Height) as a Percentage Value

Say I want a TextBlock to have its Width equal to it's Parent container's Width (ie, stretch from side to side) or a percentage of it's Parent Container Width, how can I accomplish this in XAML ...
22
votes
8answers
30k views

How can I scale an entire web page with CSS?

Using Firefox, you can enlarge an entire web page by simply pressing CTRL +. What this does is proportionally enlarge the entire web page (fonts, images, etc). How can I replicate the same ...
19
votes
3answers
2k views

How can a Swing JWindow be resized without flickering?

I am trying to make a custom UI based on a JWindow for the purpose of selecting an area of the screen to be shared. I have extended JWindow and added code to make it resizable and to 'cut out' the ...
13
votes
12answers
15k views

ASP.NET Image uploading with Resizing

I have an aspx page which will upload images to server harddisk from client pc But now i need to change my program in such a way that it would allow me to resize the image while uploading. Does ...
8
votes
2answers
8k views

Resizing iFrame with jQuery UI

I have this code and it works fine: Head <script> $(document).ready(function() { $("#test").resizable({minHeight: 50, minWidth: 50}); }); </script> Body <div id="test" ...
7
votes
5answers
7k views

javascript resize event firing multiple times while dragging the resize handle

I was hoping this jQuery plug-in would work, but it didn't http://noteslog.com/post/how-to-fix-the-resize-event-in-ie I added a comment to his site, but they're moderated, so you might not see it ...
7
votes
3answers
4k views

How do I resize pngs with transparency in PHP?

I'm attempting to resize pngs with transparent backgrounds in PHP and the code samples I've found online don't work for me. Here's the code I'm using, advice will be much appreciated! $this->image ...
6
votes
4answers
864 views

WPF - Expand Window to the Left

I have a WPF window with expandable panel (via Expander). The panel is on the left side of the window, and when expanded the window grows to fit the content. By default, windows are anchored to the ...
6
votes
2answers
3k views

Disable form resizing in delphi

Is there any way to stop the user resizing the form? Currently I am using: When form size changed.... MainForm.Height := 761; MainForm.Width := 777; But this looks horrible as it flickers as the ...
6
votes
2answers
756 views

Ghost-borders ('ringing') when resizing in GDI+

What happens (only noticeable on certain images) is I will see a 1 pixel white border that is inset one pixel. It seems to happen in areas that are light but not white (e.g. the sky). It is similar to ...
6
votes
3answers
6k views

Cannot get jQuery resizable to work: What am I doing wrong?

Here is my simple code to try and test if jQuery resizable is working. I use other jQuery components just fine using the google.load, and I've tried swapping out the google.load for a local version ...
6
votes
5answers
14k views

JQuery tablesorter + resizing column widths

I'm looking for a JQuery plugin for resizing table columns that works with tablesorter. Any recommendations?
5
votes
1answer
6k 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. ...
5
votes
4answers
3k views

GTK detecting window resize from the user

In GTK (or pygtk or gtkmm...) How can I detect that an application window has been manually resized by the user, as is typically done by dragging the window's edge? I need to find a way to ...
4
votes
1answer
161 views

How to make a form float in a workarea as it is the screen (move, size, maximize, minimize)?

I try code published by Freddie Bell at What is the best way to make a Delphi Application completely full screen? question, as is what i needed. I also set minimun size to be the original size. ...
4
votes
1answer
72 views

Resizing and dragging SVG polygons dynamically

I am struggling to find a way for resizing and dragging a svg polygon dynamically with the mouse. Unfortunately jQueryUi does not work for svg elements. I also checked the Raphael library, but cant ...
4
votes
1answer
82 views

resizing web page on internet explorer using zoom css property

I'm trying to scale my webpage which I made on 1680 x 1050 monitor to fit a 800 x 600 monitor. I am setting the style/css to "zoom: .7" which works great except that the scroll bar appears. When I use ...
4
votes
3answers
2k views

iphone uiview - resize frame to fit subviews

Shouldn't there be a way to resize the frame of a UIView after you've added subviews so that the frame is the size needed to enclose all the subviews? If your subviews are added dynamically how can ...
4
votes
1answer
2k views

Prevent window redraw when resizing c# windows forms

What windows message or event can i listen to in order to stop a window from being redrawing every pixel of it's resize? That is, when a user clicks on the edge of the window and starts to re-size ...
4
votes
2answers
668 views

How to perform seam carving on an image using PHP's GD library?

I am working on a project that resizes images using PHP's GD library. I would like to be able to add the option to use seam carving to resize images but don't want to require something like ...
3
votes
2answers
218 views

Table with table-layout:fixed and resizing IE8 vs IE 7 / Chrome

I'm making a timeline view in html but I ran into the following problem: I've got a table row with 12 cells that represent 12 months, each of the month has a colspan according to the number of days ...
3
votes
1answer
256 views

After resizing white image gets gray border

i was searching google for some kind solution and i found one, i tried to implement it in my code but it doesn't work. The problem is that after resizing white images they gets gray border. Here is ...
3
votes
2answers
163 views

IE6 position:absolute in relative container resizing

I have this bug in IE6. I've showed it here http://fiddle.jshell.net/bfXGC/2. When you increase height of container, then position of absolute block updates to the bottom of container. When you ...
3
votes
3answers
126 views

how to use setResizable method here

I am using netbeans as an IDE. how can i set setResizable(false) on JFrame.I dont see the object of JFrame in netbeans.
3
votes
2answers
157 views

Semaphore dynamic resizing C#

I'm trying to use semaphores to control how many instances of a job can be run at the same time. While this is fairly simple with a wait method, I also want the value to be configurable at runtime so ...
3
votes
1answer
199 views

Browser performance when combining image resizing with animated movement

I have been tasked with the job of converting a Flash animation into HTML. The animation is rather complex and requires the need to move multiple images (9) from location (x,y) to location (x2,y2) ...
3
votes
1answer
611 views

cocoa — getting nested NSViews and CALayers to resize proportionally

My NSWindow's contentView is an NSView subclass. It has some other NSView subclasses as subviews. The subviews are layer-based, and those layers in turn contain sublayers. Some of the sublayers ...
3
votes
1answer
228 views

What are some different methods to drag and move objects around without using Horizontal or Vertical Alignment set to Left and Top

I am developing a Dashboard application where I would like the user to be able to resize and move their chart widgets to where they please. I have had problems with the being able to move and resize ...
3
votes
1answer
448 views

Proper way of resizing an image to put in a ldpi, hdpi screen

What is the proper way of sizing the dimensions of an image in a hdpi screen vs a ldpi screen. For instance, an 89*80 png displays fine, with the text, on my droid 2....but how should I go about ...
3
votes
2answers
391 views

Win32: My Application freezes while the user resizes the window

I write a win32 application. I implemented the message loop myself like this: bool programcontinue = true; while(programcontinue) { while (PeekMessage(&Msg, NULL, 0, ...
3
votes
4answers
425 views

What algorithms to use for image downsizing?

What algorithms to use for image downsizing? What is faster? What algorithm is performed for image resizing ( specially downsizing from big 600x600 to super small 6x6 for example) by such giants ...
3
votes
3answers
604 views

How to prevent view resizing/transform when UINavigationBar hides/shows

I have an application with a tab bar and a navigation bar. I push a view controller that is used to show photos, one at a time. It initially shows the bars and forward/back controls; after a delay, ...
3
votes
5answers
1k views

Delphi - GridPanel does not adjust at first resize

I have a problem I am unable to solve even though I spend long time trying to do it. I usually use GridPanels to align controls on forms. It has, however, an annoying bug. When the GridPanel align ...
3
votes
3answers
158 views

What is the mechanism that keeps various sections on page from being repositioned when browser resizes

In this web site when you shrink the browser window the white space on the left and right disapear first, following by the shrinking of the right panel, followed by the main container panel. I have ...
3
votes
8answers
224 views

How should I change this declaration?

I have been given a header with the following declaration: //The index of 1 is used to make sure this is an array. MyObject objs[1]; However, I need to make this array dynamically sized one the ...
2
votes
2answers
95 views

How to programatically resize a QMainWindow to its minimum size

When I have a QMainWindow with a grid layout, when resizing it with the mouse, it won't go below some minimum size that's necessary for all the controls in it to show properly. In my app I sometimes ...
2
votes
4answers
134 views

UIImageView in my UITableViewCell changes size on click

I have a fairly vanilla UITableView in my app used to display an image and text in the default/standard way. The first time a UITableViewCell is requested I return it with a placeholder image and ...
2
votes
1answer
43 views

Flex component - When resized, resize all inner components

My component has lots of inner components. When i resize the container component (panel), i want all inner components resize with same ratio. Which function should i use?
2
votes
1answer
121 views

Resizing images according to the Screen Size on Android

I am making a graphic intensive application for Android. The problem i am facing is that on my home screen there are 6 images that are placed on a FrameLayout. Since i own a HTC Desire, I placed the ...
2
votes
4answers
113 views

What CSS properties govern how a webpage reacts to window resizing?

I just wonder because I know that my page goes haywire if you try to make it too small. Facebook, StackOverflow and almost any other well programmed site calmly adjusts the page format until they run ...
2
votes
3answers
261 views

how to add Components to JFrame once its visible without having to resize it?

I have a program where i have a JFrame with a JButton in it. when the user clicks the JButton, all Components of the JFrame are removed and a JPanel with red background is added to it. When I click ...
2
votes
2answers
589 views

Flex: Impossible to resize the external loaded SWF's content

I have an application where I try to load an external SWF. So, we have: My application: The Stage's dimensions are 768x1280. ScaleMode = EXACT_FIT. External SWF: It's another application where its ...
2
votes
3answers
310 views

Resizing images in Chrome using JQuery

I just ran into the weirdest of bugs today. I'm not sure if it's a bug in Chrome or something that I can work around but here goes. I built a JQuery function to resize a set of images that are posted ...
2
votes
1answer
328 views

Can I lock the width or height of an MFC dialog during resizing?

Is there a way to lock a dialog box's size in one direction (restrict only width or only height) in MFC?
2
votes
1answer
598 views

NSSplitView subview size programmatically constrained to container NSSplitView's size

It is hard to put this problem into words, but a real world example will help. If you look at the iTunes app, it appears to have a NSSplitView for the Sidebar | Content split, and a nested NSSplitView ...
2
votes
2answers
427 views

Both maximizing and preventing resizing on a JFrame?

I am making a game, so I want the JFrame to start maximized, but I also don't want users resizing the game, as it would screw up the graphics. I am wondering how to do both at the same time? Right ...
2
votes
1answer
172 views

Repositioning images on FormResize proportionally

I have a Delphi form with TImages on it. Actually, it's a "fake" desktop with "icons" (the TImages). When the user resizes the form (scales it or maximizes it, for example) the icons on the form ...
2
votes
1answer
212 views

Forcing a JComponent to be square when being resized

I have a JComponent that does custom drawing, and overrides the following methods: public Dimension getPreferredSize() { return new Dimension(imageWidth, imageHeight); } public Dimension ...
2
votes
4answers
1k views

WPF: Resizing a circle, keeping the center point instead of TopLeft?

I'd like to resize a circle on my canvas with the help of a slider. This circle can be moved around on the canvas by some drag&drop stuff I did in code behind, so its position is not fixed. I ...

1 2 3 4 5 6