Questions tagged [resizable]

To make something bigger or smaller, especially an image on a computer screen.

An element, such as a structure in memory or an image on a computer screen, that can be made bigger or smaller.

486 questions
50
votes
8 answers

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 there a way to make my iframe resizable?
amielopez
  • 509
  • 1
  • 5
  • 7
47
votes
8 answers

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. It should be 500x500. How can I do it? I have…
Junejo
  • 717
  • 1
  • 7
  • 14
30
votes
5 answers

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? $(document).ready(function(){ …
ilslabs
  • 301
  • 1
  • 3
  • 3
23
votes
3 answers

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?
Joubert Nel
  • 3,154
  • 3
  • 26
  • 24
21
votes
6 answers

JQuery Draggable and Resizeable over IFrames (Solution)

I recently ran into some troubles using JQuery Draggable and Resizable plugins. Looking for solutions, i found some very fragmented code in many different places and finally filed down to a clean solution which seems to work almost perfectly for…
Bob
  • 3,074
  • 11
  • 43
  • 62
21
votes
5 answers

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 div's left border so that the child div can be…
QFDev
  • 8,668
  • 14
  • 58
  • 85
18
votes
4 answers

How to make text input box resizable (like textarea) by dragging its right-bottom corner using jQuery?

I would like to have (preferrably in jQuery) regular text input box which can be clicked and dragged by its right-bottom corner (e.g. like textareas have in Chrome) and resized by user ? Can't find any jQuery plugin already implementing this. Can…
Frodik
  • 14,986
  • 23
  • 90
  • 141
18
votes
3 answers

jQuery UI resizable not working at all

Ok here is the problem. jQuery Resizable just does not work on this page: click here Try it out on the grey box in the upper left corner. What I want to do is make the shoutbox on the right size resizable. But it didn't work so I tried to just copy…
Cletus
  • 381
  • 1
  • 5
  • 12
18
votes
1 answer

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
to allow resizing from different sides. Currently I'm using the following code:
user2265529
  • 479
  • 1
  • 8
  • 18
17
votes
6 answers

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 handles. The JQuery documentation on the Resizable…
Noldorin
  • 144,213
  • 56
  • 264
  • 302
17
votes
1 answer

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.
Praveen V
  • 267
  • 3
  • 7
  • 22
14
votes
7 answers

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 windows that pop up and are draggable around the…
CatDadCode
  • 58,507
  • 61
  • 212
  • 318
14
votes
9 answers

How can I make a resizable array in Java?

What is the best way to do a resizable array in Java? I tried using Vector, but that shifts all elements over by when when you do an insert, and I need an array that can grow but the elements stay in place. I'm sure there's a simple answer for this,…
Soren Johnson
  • 2,561
  • 4
  • 21
  • 17
12
votes
4 answers

How to force jQuery resizable to use percentage?

I am trying to use the jQuery resizable to resize my div, I've got it to work pretty good except that after the stop event, jQuery UI would revert my % value back to pixel value. I've a working fiddle here:…
codenamezero
  • 2,724
  • 29
  • 64
12
votes
1 answer

How can I make all 4 corners of my div have resizable handles with jQuery?

I am trying to append a div onClick that is both draggable and resizable with handles for resizing that div being in all 4 corners. I have been able to make the div draggable and add the handles... HOWEVER... Only the bottom, right, and…
1
2 3
32 33