Active
Project:
Drupal 8 Admin Theme
Version:
8.x-2.2
Component:
Miscellaneous
Priority:
Critical
Category:
Bug report
Assigned:
Reporter:
Created:
30 Jul 2018 at 12:39 UTC
Updated:
7 Oct 2021 at 18:12 UTC
Jump to comment: Most recent
In Drupal 8, I have added one block on node add form page. Also used filter using better exposed filter. But In admin, when I click on filter/ apply ajax is not working. Whenever I submit form for filter its reload the page. I am facing this issue only on Node Add Form. In nodes ajax is working.
Comments
Comment #2
Rupali patidar commentedComment #3
selwynpolit commentedhmmm - I'm having trouble getting ajax working in D8 period..
Comment #4
bbox1 commentedBear in mind that the exposed filter is actually a form. If you happen to be embedding the view within another admin form, then essentially the exposed filter's
<form>element is supplanted by the admin form's<form>element. This will result in all submissions being made against the admin form's<form>definition, rather than the exposed form. That's why it just reloads the page.In other words, you can't effectively use an exposed filter inside of another form.