Pedro Vieira
Pedro Vieira

Reputation: 2316

Transfer data between two tables

So, I need to transfer data from one table to another one in the same page in Rails. I searched for tutorials on the internet but didn't found something that I could use, maybe I missed some keyword or something. I could try to do it from scratch but i think this is a common thing so I don't want to reinvent the wheel here. I'm trying to do something like this:

enter image description here

Imagine that you have people that work on one place but they can be transferred to another place and so on. I would like to know if someone has a tutorial or some guidance about how to do this. Thanks!

Upvotes: 0

Views: 209

Answers (1)

SoAwesomeMan
SoAwesomeMan

Reputation: 3406

DRAGULA

enter image description here Image source: http://thenextweb.com/dd/2015/07/20/less-of-a-drag-maaaaaaaan

_

<%= javascript_include_tag("https://cdnjs.cloudflare.com/ajax/libs/dragula/3.7.1/dragula.min.js") %>

IMPLEMENTATION

Implementation is up to you. Help: https://dragula-slackin.herokuapp.com/

Upvotes: 1

Related Questions