mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
parent
894aca96e6
commit
a145e24fd2
@ -1150,6 +1150,8 @@ warnings:
|
||||
message: 'Removed'
|
||||
'dontEscape()':
|
||||
message: 'FormField::dontEscape() has been removed. Escaping is now managed on a class by class basis.'
|
||||
'SilverStripe\Forms\CompositeField::setID()':
|
||||
message: 'ID is generated from name indirectly; Use SilverStripe\Form\FormField::setName() instead'
|
||||
'SilverStripe\Forms\FormField::createTag()':
|
||||
message: 'moved to SilverStripe\View\HTML->createTag()'
|
||||
'SilverStripe\Forms\Form->transformTo()':
|
||||
@ -1370,4 +1372,4 @@ warnings:
|
||||
url: 'https://docs.silverstripe.org/en/4/changelogs/4.0.0#module-paths'
|
||||
'THIRDPARTY_DIR':
|
||||
message: 'Path constants have been deprecated, use the Requirements and ModuleResourceLoader APIs'
|
||||
url: 'https://docs.silverstripe.org/en/4/changelogs/4.0.0#module-paths'
|
||||
url: 'https://docs.silverstripe.org/en/4/changelogs/4.0.0#module-paths'
|
||||
|
@ -2190,6 +2190,8 @@ appropriate mime types. The following file manipulations classes and methods hav
|
||||
submission, in contrast to `FormField::setValue($value, $data)` which is intended to load its
|
||||
value from the ORM. The second argument to `setValue()` has been added.
|
||||
* `FormField::create_tag()` moved to `SilverStripe\View\HTML->createTag()`.
|
||||
* `CompositeField::setID()` is removed. ID is generated from name indirectly.
|
||||
Use SilverStripe\Form\FormField::setName() instead
|
||||
* Changed `ListboxField` to multiple only. Previously, this field would operate as either a
|
||||
single select (default) or multi-select through `setMultiple()`.
|
||||
Now this field should only be used for multi-selection. Single-selection should be done using
|
||||
|
Loading…
Reference in New Issue
Block a user