forked from 0x2620/pandora
filterForm: add value method
This commit is contained in:
parent
579545ea3d
commit
315e27bf1e
1 changed files with 10 additions and 8 deletions
|
@ -66,6 +66,7 @@ pandora.ui.filterForm = function(options) {
|
|||
})
|
||||
);
|
||||
that.getList = that.$filter.getList;
|
||||
that.value = that.$filter.value;
|
||||
});
|
||||
that.updateResults = function() {
|
||||
if (mode == 'list') {
|
||||
|
@ -81,14 +82,15 @@ pandora.ui.filterForm = function(options) {
|
|||
pandora.$ui.editPanel.updatePanel();
|
||||
});
|
||||
} else {
|
||||
pandora.$ui.list && pandora.$ui.list.bindEventOnce({
|
||||
init: function(data) {
|
||||
pandora.$ui.folderList[
|
||||
pandora.getListData().folder
|
||||
].value(list.id, 'query', that.$filter.options('value'));
|
||||
}
|
||||
})
|
||||
.reloadList();
|
||||
pandora.$ui.list && pandora.$ui.list
|
||||
.bindEventOnce({
|
||||
init: function(data) {
|
||||
pandora.$ui.folderList[
|
||||
pandora.getListData().folder
|
||||
].value(list.id, 'query', that.$filter.options('value'));
|
||||
}
|
||||
})
|
||||
.reloadList();
|
||||
pandora.$ui.filters && pandora.$ui.filters.forEach(function($filter) {
|
||||
$filter.reloadList();
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue