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
Post a Comment