6/23/12

Set SharePoint Multi-Value field with JavaScript

A multi-value field column in a SharePoint list allows us to store multiple look-up ids. This is an alternative to creating a separate list that has a one-to-many association. For example, an invoice item that needs to be associated to one ore more time entries. For this example, we could define an invoice list with a lookup field that can hold multiple values.

When adding a new record to the list with JavaScript Client Object model, we must use an instance of SP.FieldLookUpValue for each lookup id that needs to be associated to a new record on the list. The following JavaScript snippet shows how a multi-value field can be set to one or many values:

  1. var context = SP.ClientContext.get_current();
  2. var web = context.get_web();

  3. // Get references to the lists we will use
  4. var tsList = web.get_lists().getByTitle('Invoice');
  5. var listInfo = new SP.ListItemCreationInformation();
  6. var tsItem = tsList.addItem(listInfo);       //add new item

  7. var fields =['InvoiceNo','TimeEntries'];  //fields to read and set

  8. $(fields).each(function(){
  9. var field = $("#"+this); //get reference to the control
  10. var fieldValue = field.val(); //get the value
  11.    
  12. if (title =='Weeks'){
  13. var items = field.val();         //multi select listbox returns an array      
  14. var timeEntries =[];   //array to store the lookup ids
  15. for(var idx=0;idx<items.length;idx++){         
  16.            var newField = new SP.FieldLookupValue(); //new lookup field instance
  17.            newField.set_lookupId(items[idx]); //sets the lookup id
  18.           timeEntries.push(newField); //add to the array
  19. }
  20. fieldValue =timeEntries;    
  21. }
  22. tsItem.set_item(fieldName,fieldValue );    
  23. });
  24. tsItem.update();
  25. context.executeQueryAsync( //post update
  26.     Function.createDelegate(this, onSuccess), 
  27.     Function.createDelegate(this, onError));

We use a field array to define all the controls and fields that need to be processed. The HTML controls have their ids set to the field names. This allows us to map the controls to the fields. The IF statement is used to check for the field that has the multiple lookup values. When this field is encountered, we read the value of the Multi-Select list which returns an array of ids. For each id, we create a FieldLookupValue instance and set the lookup id using the set_lookupId method. Each FieldLookupValue is then pushed into the timeEntries array. The last step is to set the item value by calling set_item and passing the array of FieldLookupValues. The call to item.update() sets the query to execute. To post the changes, we call executeQueryAsync and pass the OnSuccess and OnError handler to validate that all went OK or if an error needs to be handled.
  1. function onSuccess(sender, args) {
  2.    alert('Invoice was updated');
  3. }

  4. function onError(sender, args) {
  5.     alert(args.get_message());     
  6. }


Happy coding.
og-bit.com