Все вопросы: [resizable]
11 вопросов
Как мне использовать функцию resizable () в jQuery Ui, чтобы просто изменить размер ВЫСОТЫ div?
Это все, что мне нужно, ребята, у меня есть 2 div (a, b) внутри другого DIV (c). Итак, размер блока C можно изменять, и когда я его изменяю, размер блоков A и B также изменяется с помощью параметра alsoResize.Работает неплохо, но теперь мне нужно изменить размер высоты между двумя внутренними di...
jQuery resizable (), доступ к исходному объекту
Это может показаться очевидным, но я не могу его найти.При использовании изменяемого размера я хочу сохранить новую ширину изображения, но как мне получить доступ к атрибуту ID изображения, размер которого я только что изменил?Это мой код: $('img.article_image').resizable({ aspectRatio: t...
Resizable alsoresize in one direction only
I am trying to use the jQuery UI Resizable feature. I would like to only add a south/west resize handler on one object, so it will resize to the west and south. When it resizes, I would like to simultaneously resize another object, but only in the 'south' direction. I am trying to use the alsores...
resizable jquery chrome
I have a problem that i want to make an element draggable and resizable both. Even after dropping the tag it should be resizable. Some Sample Code function DivMouseDown(id) { try { jQuery('#'+ id).draggable({ opacity: 0.5, revert: 'invalid' }); } catch (e) { alert ("exc...
jquery - Resize element ondrag when reaches container
I have a standard div that is set to both drag & resize within it's parent. I need to be able to resize the div as it is dragged into it's parent. I only need this to happen when it's dragged vertically to the bottom, so I have it setup like this: $("#draggable").draggable({ drag: functi...
jquery resizable
The function given below is working fine but over i want to amke every elemnt that i drop a s resizable but as soon as i double click that element it's resizable property is lost. How can i resolve it? function dropTag(tag){ var box = ""; var hashtag = "#"+tag; $(hashtag).draggable(...
Calculate draggable divs - jquery
I have two divs on the page, which represent two columns. Both are floating left, have 49% width and padding-right for 0.5%. In each columns there are various divs positioned vertical down. Now I want to make a function, which will allows user to resize each div in column, or if this isn't achiev...
Save div height in a cookie from jQuery resizable
I am using jQuery resizable from interface.eyecon.ro/docs/resizable for a menu on a page that I am working on. I need to set a cookie ( plugins.jquery.com/project/Cookie ) to store the height of the menu div so that the div doesn't resize to it's original css height on every page reload. I've be...
jQuery UI resizable - direction of operation
How can I determine the direction of resize operation? I tried googling that and found a ticket on jquery ui, that said it is fixed. But there is no doc on how to use it.
Настраиваемые ручки с изменяемым размером в пользовательском интерфейсе JQuery
Я пытался создать текстовое поле с изменяемым размером (многострочный ASP.NET TextBox / HTML textarea) и использовать пользовательский интерфейс JQuery, чтобы изменить его размер, но, похоже, столкнулся с несколькими проблемами, связанными с настраиваемыми маркерами перетаскивания. Документац...
Изменение размера JQuery с помощью ручки
Я использую jQuery-ui Resizable - и хочу вместо этого использовать ручку границ (моя ручка - это кнопка в правом нижнем углу). Я вижу, что в параметрах у меня есть KnobHandles, которое я должен установить на true. Где установить ручку? Я попытался установить его в ручках, но он не работа...