N°4007 - When a search is on auto submit, auto submit it also on first display

This commit is contained in:
Stephen Abello
2021-05-11 14:16:02 +02:00
parent 1c2dcc7b9a
commit 5977c5dd9e

View File

@@ -120,6 +120,13 @@ $(function()
'base_oql': this.options.search.base_oql,
'criterion': this.options.search.criterion,
});
// If auto submit is enabled, also submit on first display
if(this.options.auto_submit === true)
{
this._submit();
}
},
// called when created, and later when changing options
_refresh: function()