jQuery UI Widgets › Forums › Layouts › Kanban › Ability to drag/dop a user into an item for assignment
Tagged: angular kanban, angular2 kanban, bootstrap kanban, javascript kanban, jquery kanban, jqwidgets kanban, jqxKanban, Kanban Edit User, typescript kanban
This topic contains 3 replies, has 2 voices, and was last updated by Hristo 6 years, 11 months ago.
-
Author
-
Hello,
I’d like to have the users with their pictogramms on top and if an items needs a re-assignment, Id like to drag/drop a user over the item and assign him this way.
Is this something that is already implemented? Any example code available?
Uwe- This topic was modified 6 years, 11 months ago by Uwe.
Hello Uwe,
You could try to use our demos as a base.
Please, take a look at this demo:
http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxkanban/defaultfunctionality.htm?light
Instead of text with item’s counting could set desired ‘pictogram’.Best Regards,
Hristo HristovjQWidgets team
http://www.jqwidgets.comHello Hristo,
thanks for your replay. I am not sure if I have expressed my wish correctly.
What I want is a separate list of users above the Kanban board (with pictogramms). (this is what I have implemented already)
Then, I want to drag/drop one of these pictogram users over to one of the existing items in the board, to reassign this item to the pictograms’ user.Is this something what I can implement somehow?
Volker
Hello Volker,
Unfortunately, we do not have such demo.
But you could try to create a workaround and I would like to suggest you one approach.
You could use jqxSortable (for a list of users “with pictograms” or another suitable widget) and usestart
andstop
events.
When drop one item collect the info (var item = event.args.item[0]
), after that with calculation of offset (var offset = args.offset
), originalPosition, and etc.
And to update an particular item of the Kanban – thisvar items = $('#jqxKanban').jqxKanban('getItems');
could be useful and this one$('#jqxKanban').jqxKanban('updateItem', itemId, newContent);
.
I cannot warrant for this scenario.
Thank you for your understanding.Best Regards,
Hristo HristovjQWidgets team
http://www.jqwidgets.com -
AuthorPosts
You must be logged in to reply to this topic.