mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-23 14:28:45 +01:00
If calendar listview search is cleared, make sure it doesn't come back
This commit is contained in:
parent
c2919ace3c
commit
71d3897a79
@ -3487,6 +3487,10 @@ app.classes.calendar = (function(){ "use strict"; return AppJS.extend(
|
|||||||
{
|
{
|
||||||
this.state.keywords = nm.activeFilters.search;
|
this.state.keywords = nm.activeFilters.search;
|
||||||
}
|
}
|
||||||
|
// Bind to keep search up to date
|
||||||
|
jQuery(nm.getWidgetById('search').getDOMNode()).on('change', function() {
|
||||||
|
app.calendar.state.search = jQuery('input',this).val();
|
||||||
|
});
|
||||||
nm.set_startdate = jQuery.proxy(function(date) {
|
nm.set_startdate = jQuery.proxy(function(date) {
|
||||||
this.state.first = this.date.toString(new Date(date));
|
this.state.first = this.date.toString(new Date(date));
|
||||||
},this);
|
},this);
|
||||||
|
Loading…
Reference in New Issue
Block a user