How to find out which values were removed from Right side of SlushBucket

Community Alums
Not applicable

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

palanikumar
Giga Sage

Can you try this:

var rtevalues = slushAccounts.getValues(getRightSelect());
 var lftvalues = slushAccounts.getValues(getLeftSelect());
Thank you,
Palani

Community Alums
Not applicable

@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