Draggable and Droppable jquery UI within same table -


i working on mvc application , have faced situation. when googled didnot find this. situation follows:- have table follows:-

<table>          <thead>              <tr>                  <th>test1</th>                 <th>test2</th>                 <th>test3</th>                 <th>test4</th>              </tr>          </thead>          <tbody>                  <tr>                      <td>1</td>                     <td>1</td>                     <td>1</td>                     <td>1</td>                  </tr>                  <tr>                      <td>2</td>                     <td>2</td>                     <td>2</td>                     <td>2</td>                  </tr>                  <tr>                      <td>3</td>                     <td>3</td>                     <td>3</td>                     <td>3</td>                  </tr>                  <tr>                      <td>4</td>                     <td>4</td>                     <td>4</td>                     <td>4</td>                  </tr>          </tbody>      </table> 

i want make row draggable , drop after row or before other row.

how can using jquery?


Comments

Popular posts from this blog

c++ - OpenCV Error: Assertion failed <scn == 3 ::scn == 4> in unknown function, -

php - render data via PDO::FETCH_FUNC vs loop -

The canvas has been tainted by cross-origin data in chrome only -