mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
ENHANCEMENT: removed the situation, when the user is left with empty search box and empty dropdown.
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@97793 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
4939a0a4dc
commit
b34315a35d
@ -114,8 +114,6 @@ TreeDropdownField.prototype = {
|
||||
|
||||
saveCurrentState: function() {
|
||||
this.origHumanText = this.getHumanText();
|
||||
this.defaultCleared = false;
|
||||
this.searched = false;
|
||||
},
|
||||
|
||||
restoreOriginalState: function() {
|
||||
@ -324,7 +322,7 @@ TreeDropdownField.prototype = {
|
||||
}
|
||||
|
||||
if (!this.treeDropdownField.treeShown) this.treeDropdownField.toggleTree();
|
||||
if (!this.treeDropdownField.defaultCleared) {
|
||||
if (!this.treeDropdownField.defaultCleared || !this.treeDropdownField.searched) {
|
||||
this.treeDropdownField.defaultCleared = true;
|
||||
this.treeDropdownField.setHumanText('');
|
||||
}
|
||||
@ -338,7 +336,8 @@ TreeDropdownField.prototype = {
|
||||
if(this.tree.selected && this.tree.selected.removeNodeClass) this.tree.selected.removeNodeClass('current');
|
||||
this.addNodeClass('current');
|
||||
this.tree.selected = this;
|
||||
|
||||
|
||||
this.options.dropdownField.searched = false;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user