Hi Team ,
I have two list (List A) (List B ) i want to do that if i drag n drop one record from list A to List B then that record get remove from list A and add in list B how can i do that .
if there is any forge then please share with me
Thanks
Hi Arif,
Did you check below component? I hope it will solve your problem.
https://www.outsystems.com/forge/component-overview/7536/drag-and-drop-in-reactive.
Thanks,
Sachin
There are a few forge assets that do that, you just need to look for them in the forge.
I usually use the SortableJS forge asset, which works pretty well. It even includes a demo that you can see and download to see how it works, of your use case of dragging elements from one list to the other.
If needed, you can also find the instructions on how to use this component in the Create Sortable Lists in OutSystems article.
Cheers,João
Hello @Arif Baig
You can do it easily by using these two default list actions -
ListAppend
ListRemove
If you move any record from List A then use ListAppend action to add this record in List B and use ListRemove action to remove this record from List A, Same in case List B.
I hope it'll help you.
ThanksDeep