mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Compare commits
2 Commits
5835657133
...
0fed76ecf1
Author | SHA1 | Date | |
---|---|---|---|
|
0fed76ecf1 | ||
|
b5203fdc50 |
@ -139,7 +139,6 @@ trait SearchableDropdownTrait
|
|||||||
return $emptyString;
|
return $emptyString;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$name = $this->getName();
|
|
||||||
if ($this->getUseDynamicPlaceholder()) {
|
if ($this->getUseDynamicPlaceholder()) {
|
||||||
if ($this->getIsSearchable()) {
|
if ($this->getIsSearchable()) {
|
||||||
if (!$this->getIsLazyLoaded()) {
|
if (!$this->getIsLazyLoaded()) {
|
||||||
@ -598,6 +597,9 @@ trait SearchableDropdownTrait
|
|||||||
$field->setSource($this->sourceList);
|
$field->setSource($this->sourceList);
|
||||||
$field->setReadonly(true);
|
$field->setReadonly(true);
|
||||||
|
|
||||||
|
// Remove the text "Type to search..." on a read-only field
|
||||||
|
// $field->setPlaceholder('');
|
||||||
|
|
||||||
return $field;
|
return $field;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -73,6 +73,8 @@ class SearchableDropdownTraitTest extends SapphireTest
|
|||||||
$this->assertSame('My empty string', $field->getPlaceholder());
|
$this->assertSame('My empty string', $field->getPlaceholder());
|
||||||
$field->setPlaceholder('My placeholder');
|
$field->setPlaceholder('My placeholder');
|
||||||
$this->assertSame('My placeholder', $field->getPlaceholder());
|
$this->assertSame('My placeholder', $field->getPlaceholder());
|
||||||
|
$readonlyField = $field->performReadonlyTransformation();
|
||||||
|
$this->assertSame('', $readonlyField->getPlaceholder());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testSeachContext(): void
|
public function testSeachContext(): void
|
||||||
|
Loading…
Reference in New Issue
Block a user