46 questions
22
votes
5
answers
47k
views
How do I make a div width draggable?
I have a div nested inside another div which is used to display a settings console. The nested div has a fixed positioned inside the parent as follows:
I'd like to add a draggable handle to the child ...
17
votes
6
answers
30k
views
Custom Resizable Handles in JQuery UI
I've been attempting to create a resizable textbox (ASP.NET multiline TextBox / HTML textarea) and use JQuery UI to make it resizable, but seem to be running into a few issues involving custom drag ...
53
votes
8
answers
94k
views
How can I make an iframe resizable?
We have this group project and I was assigned to make a certain iframe resizable. I've been reading lots of forum posts since last week, and I found out that iframe itself can't be resizable.
Is ...
30
votes
5
answers
15k
views
jQuery UI resizable fire window resize event
I have 2 events, one to detect window resize and other to detect the resizable stop of div.
But when I resize the div, in the console detect the window resize event.
Is there any way to block this?
...
14
votes
7
answers
12k
views
JQuery UI resizable does not support position: fixed; Any recommendations?
JQuery UI's .resizable function does not support position: fixed; elements. The moment you try to resize them it switches their position attribute to absolute. Any recommended fixes?
I have some chat ...
8
votes
3
answers
29k
views
Resizing DIV Panel
I am working on a website project and I need to add a resizable panel like jsfiddle or hotmail (hotmail has a left panel that includes your mails, and has a right content panel that you can read your ...
7
votes
7
answers
13k
views
JFrame resizable height ONLY
JFrame.setResizable(true) lets the user resize both the width and height of a window. Does a method exist which allows the user to ONLY resize the height?
Thanks.
Edit: The solutions below do NOT ...
50
votes
8
answers
155k
views
JFrame: How to disable window resizing?
I am creating a JFrame and I call the method setSize(500, 500). Now the desired behaviour is that JFrame should not be resized by user in any condition. Either by maximizing or by dragging the borders....
23
votes
3
answers
22k
views
Resizable Canvas (JQuery UI)
ANY DOM element can be made resizable according to this page: http://jqueryui.com/demos/resizable/
However, it seems that this doesn't work for the CANVAS element. Possible?
18
votes
1
answer
33k
views
Resizable handles with jQueryUI
I need to make resizable handles like in this image.
To be more specific, I need those blue dots to be around my <div> to allow resizing from different sides.
Currently I'm using the ...
17
votes
1
answer
14k
views
What is the resizing option for inputTextarea component in JSF
I am using JSF2.0 and I have an inputTextArea component and want to prevent the enduser from resizing it.How can I do it.I tried resize="false" but it is not accepting.
11
votes
3
answers
20k
views
Pygame. How do I resize a surface and keep all objects within proportionate to the new window size?
If I set a pygame window to resizable and then click and drag on the border of the window the window will get larger but nothing blit onto the surface will get larger with it. (Which is understandable)...
7
votes
5
answers
11k
views
How to prevent Resizable and Draggable elements from collapsing on each other?
Hey all. I have the following code:
http://jsfiddle.net/g7Cgg/
As you can see, there are 2 simple DIVs that are stacked one above each other. Each of these DIVs are also set to be resizable and ...
4
votes
2
answers
14k
views
Resizable, draggable object in jquery. Possible?
I want to have an object which is both resizable and draggable. I'll need:
X
Y
Size
of the object.
Is this possible?
There is an example on http://www.jsfiddle.net/davidThomas/DGbT3/1/ which gets ...
1
vote
1
answer
803
views
jQuery Resizable handles setter not working
i'm using jQuery UI Resizable, and i need to set handles option after the initialization.
I followed the API example and initialization method works just fine, but setter method seems not working.
...