Replace "Drag and Drop" method with simple Arrow method
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2024 10:39 AM
NEED URGENT HELP:
I am working on Service Portal widget.
There we created two columns from customer table.
Currently it is working as Drag and drop option from one column to another like attached Screenshot.
But my requirement is remove the Drag method and use the Arrow button instead.
We need to select one customer, click on the middle arrow and it moves to the right bucket list.
We need to select all customers with CTRL+A, click on the middle arrow and it moves to the right bucket list.
We need to select one customer + ctrl + click on more customers in the left bucket, click on the middle arrow and they move to to the right bucket list.
I check the whole Widget, and I guess it is working because of this widget client script:
dragStart: function () {
c.availableAs.clone = false;
},
dragEnd: function () {
c.availableAs.clone = true;
I tried to remove this function then all value in the list disappeared.
Can you please help me remove this drag and drop option and use the simple arrow option like:
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2024 12:27 PM
Hi, if you are using this in a catalog item\record producer then I would look at the OOB list collector variable.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2024 10:43 PM
I need help in Widget Client script.