vote up -1 vote down star
1

Hi All,

i want to make my element draggable and resizable both. How can i do that.

Sample Codeenter code here

function  DivMouseDown(id)
{

try
{
    jQuery('#'+ id).draggable({
    		opacity: 	0.5,
    		revert: 'invalid'

    });
}

catch (e)
{

    alert ("exception in DIVmouse down: "+ e);
}


try
{
    jQuery('#droppable').droppable({
    	drop: function(ev,ui)
    	{
    		var type = jQuery(ui.draggable).attr("tagtype");
    		id = jQuery(ui.draggable).attr("id");
    		alert("1");
    		jQuery(ui.draggable).resizable();
    		alert("2");
    		if(document.getElementById(id) != null)
    		{
    			var tagStatus = document.getElementById(id).getAttribute('newtag');

    			var idTemp = Math.floor(Math.random()*1000); 

    			if(tagStatus == 'new')
    			{
    				//Create new div at the same place and replace this tag status.
    				var divId = document.getElementById(id);
    				divId.setAttribute('newtag','old'); 
    				divId.setAttribute('id',idTemp);
    				CreateWorkboardDiv('html comment', type); 
    				jsmarty = WMCreateSmartyObject();
    				divValue = WMSmartyFetch(jsmarty, 'edit_menu.tpl');
    				document.getElementById(divId.id).innerHTML = divValue;
    				jsmarty.clear_all_assign();
    				//alert("1");
    				//jQuery(ui.draggable).attr("id").resizable();
    				//alert("2");
    				//Open Edit box.
    				CollabobaTagCreate(divId.id,type,0);    
    			}
    			else
    			{
    				//drag on board  div.
    				//Nishima-10-09-09
    				var position = new Array();
    				position['left'] =  document.getElementById(id).offsetParent.offsetLeft + document.getElementById(id).offsetLeft;
    				position['top']   = document.getElementById(id).offsetParent.offsetTop + document.getElementById(id).offsetTop;
    				position['width'] =  document.getElementById(id).offsetWidth;
    				position['height'] =  document.getElementById(id).offsetHeight;
    				position['zindex'] =  jQuery('#' + id).css('zIndex');
    				var stickyid = document.getElementById(id).getAttribute('stickyId');  
    				UpdateStickyPosition(position,stickyid);
    				//Nishima-10-09-09
    			}
    		}
    	}
    	});
}
    	catch (e)
{

    alert ("exception in DIVmouse down: "+ e);
}


}

Please can anyone tell me that how can I make my element resizable after it is dropped. In the above code tag is dragging and dropping perfectly but in the above code what can I add to make the element resizable also in CHROME.

flag
I think you should fix some of the formatting. – alex Sep 14 at 6:36
1  
No need to post 2 times the same question : stackoverflow.com/questions/1419909/… – Clement Herreman Sep 14 at 6:37
Since this was the same code block as your other question, with the same title - I edited your old question to include the summary line for you - This is an exact duplicate of the other question Clement mentions. Voting to Close. – gnarf Sep 14 at 6:42

1 Answer

vote up 0 vote down

Look at this question : Custom Resizable Handles in JQuery UI

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.