简体   繁体   中英

How To Filter 1:N Add Existing Lookup Dynamics CRM 2013?

Do you know how can we filter 1:N "Add Existing Lookup" at Dynamics CRM 2013 ?

We tried this part, but it doesnt work anymore in CRM 2013:

var lookupItems = LookupObjects(null, "multi", gridTypeCode, 0, null, "", null, null, null, null, null, null, viewId, [customView]);

You should change your LookupObjects function to LookupObjectsWithCallback function:

LookupObjectsWithCallback(callbackReference, null, "multi", gridTypeCode, 0, null, "", null, null, null, null, null, null, viewId, [customView]);

Where your callbackReference is an object with property callback :

callbackReference: {
   callback: function (lookupItems) {    
          // Do something with selected items.
   }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM