> For the complete documentation index, see [llms.txt](https://help.pickzen.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.pickzen.com/developers/sdk/documentation/formslide/formfield/selectorfield.md).

# SelectorField

This class extends from FormField and models a single or multi-selection selector.

```javascript
/**
 * Returns tru if multiselect.
 *
 * @returns {boolean}
 */
isMultiple() 

/**
 * Returns the list of options of this field.
 *
 * @returns {DropdownFieldOption[]}
 */
getOptions() 

/**
 * Sets a value for this field.
 *
 * @param val
 */
setValue(val) 

/**
 * Removes a value from this field.
 *
 * @param val
 */
removeValue(val)

```
