UpdateField Method
Changes the value of a field and changes the list of selected values for display.
Syntax
public virtual void UpdateField( 
   string fieldId,
   string newFieldValue,
   IEnumerable<string> newSelectedValues
)

Parameters

fieldId
The field ID.
newFieldValue
The new value.
newSelectedValues
The list of values to display as selected.
Remarks
The default implementation is to replace the current value with the new value and replace the selections with the new selections. You can override this implementation in your adaptor.
See Also