Skip to main content

Notifications

Customer experience | Sales, Customer Insights,...
Unanswered

How to update multiselect operation set from one entity to another entity using javascript as fields created not showing in crm builder for . Thanks in advance

(0) ShareShare
ReportReport
Posted on by
function  SetMultiSelect (executionContext) {
debugger;
alert("Hello");
var formContext = executionContext.getFormContext();

var existingValues = formContext.getAttribute('amy__employeecourses').getValue();
var selectedTexts= formContext.getAttribute("amy__employeecourses").getText();
 alert(existingValues );
 alert(selectedTexts);
//formContext.getAttribute("amy__employeetrainingcourses").setValue([432660000,432660001,432660002,432660003,432660004]);

  var newValues = [1, 2,3,4,5];
    var updatedValues = ConcatArrays(existingValues, newValues);

  
    formContext.getAttribute("amy__employeetrainingcourses").setValue(updatedValues);
}
function ConcatArrays(existingValues, newValues) {
    if (existingValues === null || Array.isArray(existingValues) === false) {
        return newValues;
    }

    if (newValues === null || Array.isArray(newValues) === false) {
        return existingValues;
    }
    return existingValues.concat(newValues);
}

         

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

News and Announcements

Announcing Category Subscriptions!

Quick Links

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Top 10 leaders for November!

Congratulations to our November super stars!

Tips for Writing Effective Verified Answers

Best practices for providing successful forum answers ✍️

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,359 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,370 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans