CountryDropdownField - 设置默认为setEmptyString()中设置的内容?

时间:2016-07-25 10:20:39

标签: silverstripe

我正在使用CountryDropdownField。我已经设置了空字符串。它保持默认为United States。我怎么做它默认为空字符串中的设置?

$fields = new FieldList(
    CountryDropdownField::create('Country')
        ->setEmptyString('-- Please choose a country --')
);

1 个答案:

答案 0 :(得分:3)

将以下内容添加到mysite_config \ config.yml(然后确保运行dev / build?full = 1)以实现此目的...

CountryDropdownField:
  default_to_locale: false
  default_country: ''