Show Posts
|
Pages: [1]
|
1
|
General Category / EasyUI for jQuery / Problem with droppable position
|
on: May 31, 2012, 09:44:22 PM
|
i am using droppable functionality of your plugin my scenario is that i have two divs i have some controls in first div and then and drag and drop that controls on second div by making clone of them is there any method to get the above and below controls when we drop it on second div so i can place this control between them how to get it done please help it's urgent
|
|
|
3
|
General Category / EasyUI for jQuery / Re: click with draggable
|
on: May 23, 2012, 12:32:38 AM
|
thanks for your consideration
$(function () { $('.ControlContainer a').dblclick(function () { alert('hello'); }); $('.ControlContainer a').draggable({ revert: true, proxy: 'clone', onStartDrag: function () { $(this).draggable('options').cursor = 'not-allowed'; $(this).draggable('proxy').css('z-index', 10); }, onStopDrag: function () { $(this).draggable('options').cursor = 'move'; } }); });
problem is that my double click event which is on top not fire when i apply draggable with that if i comment out draggable code double click work fine i want both to work together please help me out
|
|
|
5
|
General Category / EasyUI for jQuery / click with draggable
|
on: May 17, 2012, 02:46:46 AM
|
hello i m using your plugin easyui for darh and drop but i m not able to click on element after i applied dragging on them i applied click event to some controls and also want to dragg them but only dragging is working not clicking and if i comment the dragging code click work fine please help me out urgently what is the issue ?
|
|
|
|