stay in item view when edit makes item disappear from context
This commit is contained in:
parent
2ad1e64208
commit
e8eefd95bf
1 changed files with 15 additions and 5 deletions
|
@ -92,11 +92,21 @@ oml.ui.browser = function() {
|
|||
},
|
||||
select: function(data) {
|
||||
if (ui.item) {
|
||||
oml.UI.set({
|
||||
item: data.ids[0],
|
||||
itemView: 'info',
|
||||
listSelection: data.ids
|
||||
});
|
||||
if (data.ids.length) {
|
||||
oml.UI.set({
|
||||
item: data.ids[0],
|
||||
itemView: 'info',
|
||||
listSelection: data.ids
|
||||
});
|
||||
} else {
|
||||
// no longer in context after edit
|
||||
oml.stayInItemView = true;
|
||||
oml.UI.set({
|
||||
find: {conditions: [], operator: '&'},
|
||||
listSelection: [ui.item]
|
||||
});
|
||||
oml.stayInItemView = false;
|
||||
}
|
||||
}
|
||||
},
|
||||
toggle: function(data) {
|
||||
|
|
Loading…
Reference in a new issue