diff --git a/core/modules/views/js/ajax_view.js b/core/modules/views/js/ajax_view.js index ad61000c05fd79750377cd169a262fcd1a3fb3fb..6422dd0a5563f401e2dc0f26a4c22695f76ff1cc 100644 --- a/core/modules/views/js/ajax_view.js +++ b/core/modules/views/js/ajax_view.js @@ -114,7 +114,9 @@ Drupal.views.ajaxView.prototype.attachExposedFormAjax = function () { var that = this; this.exposedFormAjax = []; - $('input[type=submit], input[type=image]', this.$exposed_form).each(function (index) { + // Exclude the reset buttons so no AJAX behaviours are bound. Many things + // break during the form reset phase if using AJAX. + $('input[type=submit], input[type=image]', this.$exposed_form).not('[data-drupal-selector=edit-reset]').each(function (index) { var self_settings = $.extend({}, that.element_settings, { base: $(this).attr('id'), element: this diff --git a/core/modules/views/src/Tests/Plugin/ExposedFormTest.php b/core/modules/views/src/Tests/Plugin/ExposedFormTest.php index 0204468ab20d4109d1b1193dc1e33e1a4568ede9..55957e591d1152e0f92e87d95b9ef69db758c7c5 100644 --- a/core/modules/views/src/Tests/Plugin/ExposedFormTest.php +++ b/core/modules/views/src/Tests/Plugin/ExposedFormTest.php @@ -169,6 +169,9 @@ public function testResetButton() { $this->assertResponse(200); $this->assertFieldById('edit-type', 'All', 'Article type filter has been reset.'); + // Test the button is hidden after reset. + $this->assertNoField('edit-reset'); + // Rename the label of the reset button. $view = Views::getView('test_exposed_form_buttons'); $view->setDisplay(); diff --git a/core/modules/views/tests/src/FunctionalJavascript/ExposedFilterAJAXTest.php b/core/modules/views/tests/src/FunctionalJavascript/ExposedFilterAJAXTest.php index df6c70b7cbd66cac0b0425c6d1eb9faf99d85dba..974aa2da424f7701bf1c6db25b377d7c46484b14 100644 --- a/core/modules/views/tests/src/FunctionalJavascript/ExposedFilterAJAXTest.php +++ b/core/modules/views/tests/src/FunctionalJavascript/ExposedFilterAJAXTest.php @@ -70,6 +70,14 @@ public function testExposedFiltering() { $html = $session->getPage()->getHtml(); $this->assertContains('Page Two', $html); $this->assertNotContains('Page One', $html); + + // Reset the form. + $this->submitForm([], t('Reset')); + $this->assertSession()->assertWaitOnAjaxRequest(); + + $this->assertSession()->pageTextContains('Page One'); + $this->assertSession()->pageTextContains('Page Two'); + $this->assertFalse($session->getPage()->hasButton('Reset')); } }