vote up 0 vote down star

Hello

I'm currently developing drag & drop menu management for my CMS, but I ran into a (hopfully) small problem.

My HTML code look like this (copied from Smarty):

<ul class="menu_items" name="parents" style="background-color:red">
{foreach from=$pages item=item}
    <li id="parent_{$item.id};" name="parent" title="{$item.id}">{$item.name}</li>
    <ul class="menu_items" name="{$item.id}" style="min-height:30px; background-color:yellow">
      {if $item.subpages}    
        {foreach from=$item.subpages item=subpage}
          <li id="{$item.id}_{$subpage.id};" name="{$item.id}" title="{$subpage.id}">{$subpage.name}</li
        {/foreach}
      {/if}
    </ul>
{/foreach}

And jQuery:

$('.menu_items li').each(function(){
	if($('ul',this).length)return;
	$('<ul></ul>').appendTo(this);
});
$('.menu_items,.menu_items ul').sortable({
		'connectWith':['.menu_items,.menu_items ul'],
		'tolerance':'pointer',
		'placeholder':'placeholder',
		'accepts': 'menu_items',
		'cursor':'pointer',
		'items':'li',
		'revert': true,
		receive: function(event, ui) { 
    alert(ui.attr('name'));
  },
		update : function (event,ui) {
		  var dropped = $(this).attr('name');
		  var itemText = ui.item.attr('name');
		  var itemId = ui.item.attr('title');
    var serial = $(".menu_items").sortable('serialize');
    $.post("ajax_actions/pages.php", {action:'sortable',order:serial,type:itemText,itemid:itemId,dropped:dropped}, function(data) {
      $('#pages_list').html(data);
      pages_list();
    });
  }
	})

Whay I need is to get the elements (name) of the list item is being dropped to. I tryed to archive this with var dropped = $(this).attr('name'); but with no success.

flag
so you need to get the name of the ul that the item was dropped on in the update function? – petersendidit Sep 4 at 17:54

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.