asantibanez / livewire-resource-time-grid

Laravel Livewire component to show Events by time and resource in a good looking grid
MIT License
217 stars 42 forks source link

Dragging items outside of the grid #14

Closed Hesesses closed 1 year ago

Hesesses commented 1 year ago

Hello!

I cant believe you have created a component like this, exactly what I have been looking for (except one feature)

On your example you are creating tasks and click the grid to add those.

I would like to have another list of pre created "tasks" (about 100 items) and drag & drop those to the grid, to correct resource and time.

Do you have any ideas what is the best way to implement this?

Anyway, thank you very much for creating this!!!

Hesesses commented 1 year ago

After playing around this was super easy:

added these to my custom tasks and i was able to drag those divs to grid

draggable="true"
ondragstart="onLivewireResourceTimeGridEventDragStart(event, '{{ $task['id'] }}')"