All Questions
Tagged with jquery-ui-resizable css
70 questions
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
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 ...
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
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
1
answer
940
views
Resizable style left and right arrows
I am trying to add 2 circles, left & right, to the resizable div and style them. I added them and it seems ok, but when I try to resize left of right the circles remain unchanged at the same ...
1
vote
2
answers
52
views
CSS - Constant size of border image
DESCRIPTION:
Im trying to get constant size of border image when resizing div. I'm thinking of solving this with pseudo elements, but is there way to make things easier?
HTML:
<div id="resizable" ...
1
vote
1
answer
226
views
Resizable div script resize pushes div beyond viewport
I have seen some similar questions, but nothing really gets at the problem I am having. I've looked for 2 days, and tried multiple things, and no success.
Basically what I want is a search screen ...
1
vote
1
answer
299
views
JQuery sortable and resizable with 3 columns. Making div larger affects the whole row below
Check fiddle: https://jsfiddle.net/Ltc246wx/35/
<div id="sortable">
<div class="widget">
ggg
</div>
<div class="widget">
pppp
</div>
<div class="...
2
votes
1
answer
136
views
jqueryUI: draggable handles are hidden at top of div
This might be a bug but I have no idea what I'm doing wrong.
I went to the trouble of making a JS Fiddle and sadly it's behaving fine there, but if you take the exact code and run it locally in ...
0
votes
1
answer
1k
views
styling jquery resizable handler for rows
I have been playing with the jquery-ui resizable() plugin to resize a table in a content editable div.
I want to be able to resize row heights from the table row, but the standard setup places the ...
5
votes
1
answer
912
views
jQuery UI Resizable seems not to work with CSS Grid Layout
It looks like that jQuery UI Resizable seems not to work with CSS Grid Layout.
When resizing of an element starts, it jumps to the right adding the offset of the CSS grid.
$('#resize').resizable()...
-2
votes
1
answer
140
views
Is there a way to set jQuery resizable containment to own figures.?
As the Question implies, I need a way to set my own resizable containment of an element. jQuery only has the parent option which is not an option in this project. SO is there any way to set ...
4
votes
2
answers
1k
views
Make two textareas side by side sharing a flexible border
I want to make two textareas side by side, which share a same border. Then we could drag the border and change their width, while keeping the sum of their widths constant. In other words, it is like ...
2
votes
3
answers
7k
views
jQuery UI resizable - limit to parent width, and leave height to auto
I do need to use jQuery UI resizable with parent limits only to width, and leave height to auto.
As i see it's not possible through regular way, and we have to do something else through jQuery. I've ...
1
vote
1
answer
1k
views
JQuery Resizable + flexbox + jQuery dialog = backwards resizing
I'm trying to make a dialog with 2 vertical sections that fill a JQuery dialog. The 2 sections should take up all the space, and there is a divider in the middle to determine how much space each ...