mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +01:00
If calendar listview search is cleared, make sure it doesn't come back
This commit is contained in:
parent
e65812d07d
commit
10b954a9d1
@ -3489,6 +3489,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