Open nad2000 opened 6 years ago
While the search form action url includes extra arguments, they don't get propagated further. The extra augment get dropped since the method is GET. It is expected behaviour of the form according to https://www.w3.org/TR/2011/WD-html5-20110525/association-of-controls-and-forms.html#form-submission-algorithm . The extra args need to be treated the same way as filters: they need to be rendered as hidden fields.
Thanks @nad2000!
I'm adding a test for this, and then copying the same approach for handling extra arguments while filtering.
While the search form action url includes extra arguments, they don't get propagated further. The extra augment get dropped since the method is GET. It is expected behaviour of the form according to https://www.w3.org/TR/2011/WD-html5-20110525/association-of-controls-and-forms.html#form-submission-algorithm . The extra args need to be treated the same way as filters: they need to be rendered as hidden fields.