-
Notifications
You must be signed in to change notification settings - Fork 62
SPFindMMSPicker
MrMEteo edited this page Apr 29, 2016
·
1 revision
$().SPServices.SPFindMMSPicker
The SPFindMMSPicker function helps you find a Managed Metadata Service (MMS) Picker's values.
$().SPServices.SPFindMMSPicker({
MMSDisplayName: ""
});
MMSDisplayName
The DisplayName of the People Picker in the form.
The function returns an array of terms, with both the guid and the value for each term.
Assume there is a MMS Picker in the form for a column named Office which allows multiple values and that it is set like so:
After the call:
var office = $().SPServices.SPFindMMSPicker({ MMSDisplayName: "Office" });
office will be an object like this:
Note that invalid values will have the guid set to "00000000-0000-0000-0000-000000000000".