mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
FIX Skip autofocus on TreeDropdownField
To avoid (visually) unsetting the selected value if the drop down is the first form field on the page (see LeftAndMain.EditForm.js)
This commit is contained in:
parent
f296439a24
commit
da87614d8f
@ -255,7 +255,7 @@
|
||||
|
||||
var title = decodeURIComponent(this.data('title'));
|
||||
this.find('.treedropdownfield-title').replaceWith(
|
||||
$('<input type="text" class="treedropdownfield-title search" />')
|
||||
$('<input type="text" class="treedropdownfield-title search" data-skip-autofocus="true" />')
|
||||
);
|
||||
|
||||
this.setTitle(title ? title : strings.searchFieldTitle);
|
||||
|
Loading…
Reference in New Issue
Block a user