388 questions
0
votes
1
answer
25
views
jQuery UI resizable - scroll container
I'm trying to use jQuery UI resizable to resize an element that's within a scrollable container and want the container to scroll automatically as I drag the element near to the bottom edge of the ...
1
vote
1
answer
43
views
How to restrict resize minimum height and convert to plain javascript
Javascript report designer band contains absolute positioned fields which can changed in designer.
html:
<div class='designer-panel-body' style='height:100px'>
<div class='designer-label' ...
0
votes
1
answer
49
views
Guides when resizing jquery-ui-resizable boxes
I'm trying to show guides while resizing boxes, based on this answer.
$('.resizable').resizable({
start: function( event, ui ) {
guides = $.map($('.resizable').not(this), ...
0
votes
1
answer
151
views
jQuery Ui resizable does not resize with cursor
The root of the problem is that the parent of the element that I want to resize has display: flex. For some reason, the element that I want to resize appears to get less than half the size that I need ...
0
votes
1
answer
61
views
How can I make dynamic JQueryUI elements sortable and resizable?
In my JQueryUI test of resizable and sortable elements when I attempt to add objects dynamically, it loses its ability to be resized. It works well when it is statically included in the HTML DOM.
HTML
...
0
votes
1
answer
123
views
How to make a resizable and draggable box that's a clear window with an opaque background?
I want to make a transparent box that can be dragged left/right, as well as re-sized with handles. The area to the left and right of the box should be opaque, something like this:
... i.e. you can ...
0
votes
1
answer
63
views
Remove resizable cursor in kQuery resizable element
I have created a container which is not resizable during initialization but when I'm clicking it it's width is expanding and then it is resizable,and on clicking again it's width it again contracting ...
0
votes
0
answers
212
views
After dynamically adding jquery sortable element drag and resize the element and get the positions in jquery
I have successfully added the dynamic element but its sortable i want the added dynamic element should be dragable and resizable.
I have copied the working demo from here .
I just want to save the top,...
-1
votes
1
answer
408
views
use jquery in React and get jquery_1.default(...).resizable is not a function
I am using jquery with React. and when I want to use $(.myclass).resizable(). I got an error:use jquery in React and get jquery_1.default(...).resizable is not a function.
here is the demo:
https://...
0
votes
1
answer
145
views
jQuery Resizable : Unique MinWidth for each element
I am using jQuery UI Resizable with draggable and droppable. Once element is dropped, I need to control the min width (different sizes for each element) while resizing.
jsFiddle
Requirement
Text ...
0
votes
1
answer
327
views
Getting old size values from jquery.ui.resizable
I am trying to get the new size of a div after resizing. However when using ui.size.height or $(e.target).height() I am getting instead the original height of the element.
function allowResizing(el){
...
1
vote
1
answer
62
views
Resizing by mouse the rest of images in a row after resizing a one, and keep ratio
I am using jQuery ui Resizable
After the resizing, all images should update both: their height and their width. But for the images that are not actually resized by a user, only the height is being ...
1
vote
1
answer
82
views
jquery ui resizable with .each() works only on first child
This is the initial html which has 'n' no. of child elements with same class name.
<div class="reading-content">
<div class="c-resourceitem-content">
<...
1
vote
1
answer
597
views
jQuery-ui resizable: problem with resize when element is dragged
When I drag a div and resize it, the div returns to its original position...
Can you help me to solve this problem or correct me about something wrong in my code?
Thanks in advance, here is my code:
...
1
vote
0
answers
213
views
jQuery resizable: how to resize hover the container td?
I have a table that is like a calendar.
Please have a look at the code snippet, it is hard to explain what I want to get from jQuery.
I can drop a block named "test" into a resource <td> but ...