Click here to Skip to main content
15,887,776 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi guys,

I'm struggling to get this to work ... basically I want to create a re-arrangeable panel headers in accordion by drag and drop. Where in , a user can re-arrange the accordion panels by drag n drop.

I have a fiddle written here fiddle

Have tried to do it using the jquery snippet from this
link



Please can anyone help.

Thanks,
Posted
Updated 22-Jan-14 5:08am
v2

1 solution

Use jQuery UI

A sample snippet below for your reference:

XML
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>jQuery UI Draggable - Default functionality</title>
  <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
  <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
  <script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
  <link rel="stylesheet" href="/resources/demos/style.css">
  <style>
  #draggable { width: 150px; height: 150px; padding: 0.5em; }
  </style>
  <script>
  $(function() {
    $( "#draggable" ).draggable();
    $( "#draggable1" ).draggable();
    $( "#draggable2" ).draggable();
  });
  </script>
</head>
<body>

<div id="draggable" class="ui-widget-content">
  <p>Accordion Header1</p>

</div>
</br>
<div id="draggable1" class="ui-widget-content">
  <p>Accordion Header2</p>
</div>
</br>
<div id="draggable2" class="ui-widget-content">
  <p>Accordion Header3</p>

</div>

</body>
</html>


http://jqueryui.com/download/
All the best:)
 
Share this answer
 
Comments
spankyleo123 23-Jan-14 4:55am    
Hi thanks bro,

This is definitely achievable using jquery UI, but I am using Bootstrap to design the UI, adding jquery UI would be like adding another dependency. I was hoping if a similar functionality is achievable using bootstrap?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900