resizable

Create a re-sizable array of CGPoints in objective-c

Hi I am trying to create a re-sizable array of CGPoints in objective-c. I've have looked into using NSMutableArray however it doesnt seem to allow resizing. Is there something else I can use? thank you ...

jQuery: stretch text area like Chrome does

Is there a plugin that would allow me to convert plain textarea to a stretchable one, just like Chrome does. ...

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, but I still not quite sure. ...

Flex 4: How to make draggable and resizable modules?

Hello, I would like to make an application using Flex modules (mx.modules.Module), the requirement is that those modules have to be draggable and resizable inside the main application shell. What is the best practice to make this kind of applications in Flex 4? Thank you in advance for your help, Adnan ...

Something like jQuery's .resizable but without the div's inside

Hi everyone, this is just a quick probe to see if this is technically possible. I'm wanting to enable the resizing of an image in the browser (also within a contentEditable area). Firefox and IE already allow this to be done with their inbuilt handles and it works fine. I'm wanting to implement something for Safari however because it do...

How to do drag-n-drop and resize on an image using jQuery?

How do I resize and image using jQuery but keep its aspect ratio the same? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <title>CrossSlide - A jQuery plugin to create pan and cross-fade animations</title> <link href="h...

Making a table in a scrolling div resizable?

I've got a table in a div, with a vertical scrollbar on the div to allow the table to be longer than the div can hold. Works fine. But I'd like to allow the user to resize the div vertically if they want to be able to view more of the table. I've been playing with the jQueryUI resizable interaction, but it doesn't seem to quite do what I...

JQuery Resize div

I want to add a div on a click and automatically start the resize mouse ui functionality with the mousedown. I can add the div easily, I have the resize functionality easy. But I can't figure out how to pass the mouse event and bind them so that the resize can start right away. Imagine a painting like program so the div can be added an...

c# - clear surface when resizing

Hello, I'm trying to build my own custom control for a windows forms application in C#.Net. Currently I paint some rectangles and other graphic elements using the paint event. When I now resize the app form to fit the desktop size, all elements are repainted (which is exactly the behaviour I need) but the old one's are shown in the back...

Components inside a repeater not resizing as expected

I have an mxml panel in which I'm using a repeater. The panel can be resized horizontally and I would like for the repeated components to resize together with panel. Here is a simplified example of how things look like: <mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" ...> <!-- scripts and some controls --...

[jquery] multiple resizables acting strange

Hi there everyone, I'm trying to place multiple resizable and draggable div's on one page that move (vertically) inside their own parent div. you can take a look at http://bit.ly/bCutBE However, these div's act really strange when I want to resize them, especially from the north side, they kind of move out of the screen very fast, whil...

Problem with jQuery resizable inside iframe

I have a first page. Where is a link which open jQuery Dialog with iframe with second page inside. There is a resizable textarea inside second page. Actually the textarea resizable only when I open the second page strictly without iframe, but it's not resizable inside iframe. How can it be fixed? UPD: This is my html code from first p...

jQuery 1.4.2 resizable div stops working once it fits in browser window

Hi all, I have a 'toolbar' div that I made resizable via jQuery UI. The weird thing is, I cannot drag the div unless the div is so long it extends past the viewable page, making the scrollbars appear. I can then drag the div anywhere I like. However, if I drag the div so it fits in the page without scrollbars, and I drop, I cannot resi...

ExtJS resizable column layout

Hi, I am in need of layout with resizable columns. I have a panel with 3 grid panels inside, now I am using hbox layout in the outer panel to organize them and this is ok, but I want to have a separator, like in the border layout, to resize the columns. how is it possible? ...

JQuery Draggable and Resizeable over IFrames (Solution)

Hi Everyone! 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 me. I thought i'd share my findings for anyone else, should they come accross ...

JFrame resizable height ONLY

Hello, 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 seem to work. On a 360x600 JFrame, setResizable(true); pack(); setMaximizedBounds(new java.awt.Rectangle(0, 0, 360, 1200)); setMaxi...

Resizable handles dont autohide on dragging

Hi, I have set the .draggable() and .resizable() properties to my elements. I have set the handles to 'autohide' and appear 'se' (southeast). Initially the handles appear only on hovering on the element. But if I drag that element around, then the handle remains there, and doesnt autohide. What could be the issue here ? ...

resize textarea to fit in a fluid width layout with javascript

Hi. I have a fluid layout and i need a textarea to expand/reduce depending of the size of the parent container. In CSS it would look like this: textarea{ width: 100%; } But this doesn´t work with textareas. How can I do this with javascript? I can get the parent element width and them calculate the number of cols to fit that width b...

Resizable table columns

Hi I'm developing a web app and am looking for a way to create my own datagrids. I know that there are lots of fantastic scripts out there with all the bells and whistles, but I need my own specific functionality, css styling, and the ability to use my own ui controls in it. Really, the only thing I need is the ability to resize the co...

jquery Resizeable malfunctioning in Firefox

Hello Everyone, in my web page i have a table and i want its first column to be resizeable. it works fine in IE8 but on Mozilla it shows resize icon in bottom right corner of the document. this is the code $(".resizable").resizable({ maxHeight: 25, maxWidth: 350, minHeight: 25, minWidth: 1...