How to find out which values were removed from Right side of SlushBucket
Community Alums
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2024 05:25 AM
Hi Team,
Below is the code written on client script in UI Page for the custom Slushbucket. Suppose I remove few values from Right side to Left Side. How to get those values using the below statement?
var rtevalues = slushAccounts.getValues(slushAccounts.getRightSelect());
var lftvalues = slushAccounts.getValues(slushAccounts.getLeftSelect());
I tried
var rvalue=rvalue+rtevalues; // This is not working?
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2024 06:20 AM
Can you try this:
var rtevalues = slushAccounts.getValues(getRightSelect());
var lftvalues = slushAccounts.getValues(getLeftSelect());
Thank you,
Palani
Palani
Community Alums
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2024 06:38 AM
@palanikumar This is what I have mentioned, its not working.. Once I remove the value from right side of slushbucket, it will show the value as undefined