keep find element up to date
This commit is contained in:
parent
7a42473919
commit
1799631d60
1 changed files with 4 additions and 4 deletions
|
@ -46,7 +46,6 @@ oml.ui.findElement = function() {
|
|||
that.updateElement();
|
||||
oml.$ui.findDialog = oml.ui.findDialog().open();
|
||||
} else {
|
||||
|
||||
oml.$ui.findInput.options({
|
||||
autocomplete: getAutocomplete(),
|
||||
placeholder: ''
|
||||
|
@ -122,9 +121,7 @@ oml.ui.findElement = function() {
|
|||
})
|
||||
.bindEvent({
|
||||
oml_find: function() {
|
||||
that.replaceElement(
|
||||
0, oml.$ui.findInSelect = renderFindInSelect()
|
||||
);
|
||||
that.updateElement();
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -210,6 +207,9 @@ oml.ui.findElement = function() {
|
|||
|
||||
that.updateElement = function() {
|
||||
var findState = ui._findState;
|
||||
that.replaceElement(
|
||||
0, oml.$ui.findInSelect = renderFindInSelect()
|
||||
);
|
||||
oml.$ui.findSelect.value(findState.key);
|
||||
oml.$ui.findInput.options(
|
||||
findState.key == 'advanced' ? {
|
||||
|
|
Loading…
Reference in a new issue