1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
   |  
	jQuery(function() {
		jQuery("#sortable").sortable({items: 'li:not(.not-sortable)'});
		jQuery("#sortable").disableSelection();
 
/// écouteur
jQuery("#sortable").bind('sortremove', function(event, ui) {
			console.log('Suppression de l iterm');
			});
 
 
});
 
 
	<ul id="sortable">
            	<li class="ui-state-default not-sortable"><a href="index.php?page=liste_graphs&zone=admin">Graph</a></li>
            	<li class="ui-state-default not-sortable"><a href="index.php?page=liste_ftp&zone=admin">Doc</a></li>
            	<li class="ui-state-default not-sortable"><a class="slide_bloc_note" href="libs/templates/admin/tp.bloc_notes.php"><img src="<?php echo _PATH_IMAGES_; ?>notes.png"  alt="" height="20" width="20" border="0"/></a></li>
            	<?php 
                foreach ($_SESSION['utilisateur']->getPersonne() as $personne) 
                                {
                                    echo'<li class="ui-state-default">'.$personne->nom_personne.'</li>';
                                }
                                ?>
 
        	</ul> | 
Partager