All Questions
Tagged with jquery-ui-resizable jquery
325 questions
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
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 ...
-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:
...
0
votes
1
answer
2k
views
How to dynamically change the width of columns in RShiny?
I was wondering if it is possible (and if so, how) to dynamically change the width of columns in RShiny?
A simple reproducible example of how I figured this could work (but doesn't, the app crashes ...
0
votes
1
answer
882
views
How to get coordinates of draggable and resizable elements using jQuery UI
I want to generate multiple coordinates(left, top, width, height) for responsive image map. In an admin interface allows for create, movable and resizable rectangles on a image. I am able to multiple ...
1
vote
1
answer
690
views
Table column resize going wrong
I tried to impelement the jQuery-UI plugin to resize a table column via Drag and Drop.
I got this:
$("#table,#table table tr th,#table table tr td").resizable({
handles: 'e'
});
The dragging is ...
-1
votes
2
answers
149
views
jQuery how to get the value of each stop event in resizable
I want to get the value for each stop event values in resizable method
function calc(){
$(function() {
$(".txt").resizable({
stop: function(e, ui) {
var w = ui.size.width;...