Skip to content

"pagerComplete" event does not get executed if filters are unchanged #1631

@larsbonczek

Description

@larsbonczek

When I press enter inside a filter input, the search gets executed even if the filters have not changed.

See here

// immediate search if user presses enter

and here (filter === false here because the event type was 'keypress')
if ( tsf.equalFilters(c, c.lastSearch, currentFilters) && filter !== false ) {
return;

The "filterStart" event gets fired here

c.$table.triggerHandler( 'filterStart', [ filters ] );

but the "pagerComplete" event never gets fired for some reason: (The false means that the "pagerComplete" event shouldn't be fired - but why?)
tsp.updatePageDisplay( c, false );

This causes my loading animation to be displayed on "filterStart", but never to get removed.

EDIT It wasn't the "filterEnd" event that didn't get fired as I first thought but the "pagerComplete" event.

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions