Posts

Showing posts from March, 2024

How to set multiple lookup value by JavaScript d365

                        var lookupValue = new Array();                 if (result.entities[0] != undefined) {                     lookupValue[0] = new Object();                     lookupValue[0].id = result.entities[0].contactid;                     lookupValue[0].name = result.entities[0].fullname;                     lookupValue[0].entityType = "contact" ;                 } ...