mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
f1c408d3f4
BUG Fixed display logic
45 lines
951 B
PHP
Executable File
45 lines
951 B
PHP
Executable File
<?php
|
|
/**
|
|
* EditableDropdown
|
|
*
|
|
* Represents a modifiable dropdown (select) box on a form
|
|
*
|
|
* @package userforms
|
|
*/
|
|
|
|
class EditableDropdown extends EditableMultipleOptionField {
|
|
|
|
private static $singular_name = 'Dropdown Field';
|
|
|
|
private static $plural_name = 'Dropdowns';
|
|
|
|
/**
|
|
* @return FieldList
|
|
*/
|
|
public function getCMSFields() {
|
|
$fields = parent::getCMSFields();
|
|
|
|
$fields->removeByName('Default');
|
|
|
|
return $fields;
|
|
}
|
|
|
|
/**
|
|
* @return DropdownField
|
|
*/
|
|
public function getFormField() {
|
|
$field = DropdownField::create($this->Name, $this->EscapedTitle, $this->getOptionsMap());
|
|
|
|
// Set default
|
|
$defaultOption = $this->getDefaultOptions()->first();
|
|
if($defaultOption) {
|
|
$field->setValue($defaultOption->EscapedTitle);
|
|
}
|
|
$this->doUpdateFormField($field);
|
|
return $field;
|
|
}
|
|
|
|
public function getSelectorField(EditableCustomRule $rule, $forOnLoad = false) {
|
|
return "$(\"select[name='{$this->Name}']\")";
|
|
}
|
|
} |