Gets the current referenced values.
Additional options to select/expand/etc...
An observable that will publish the list of the referenced content
The reference value (content Path list) that can be used for change tracking and content updates.
Updates the reference URL in case of DeferredObject (not-expanded-fields) or populates the Content list references (for expanded fields) from an OData response's field
The DeferredObject or ContentOptions data that can be used
Executes a search query to lookup possible values to the reference field
This term will be searched in the _Text field
The Top value for paging
The Skip value for paging
The additional OData params (like select, expand, etc...)
The FinializedQuery instance that can be executed
Example:
reference.Search('Term').Exec().subscribe(hits=>{
console.log(hits);
});
Updates the reference list to another Content list
The new list of content
Generated using TypeDoc
Represents a Reference list field on a Content object. Example:
let myTask = repository.Load('/Root/MyTasks/Task1', {expand: ['Versions']}).subscribe(versions => { task.Versions.GetContent(versions => { console.log('The available versions are:', versions); }) }, error => console.error)