- Issue created by @oleksandr.s
- First commit to issue fork.
- 🇪🇸Spain gxleano Cáceres
Thanks Oleksandr!
I've been testing it and everything works fine. Good catch!
It will be released on
1.2.32
1. Enable Tagify widget for a entity reference field.
2. Go to entity creation page and inspect the <input>
of field with Tagify widget.
3. Check the data-autocomplete-url
and modify it by adding some query parameter, for example foo=some_foo
data-autocomplete-url="/tagify_autocomplete/user/group_learners_selection/uzCyl-z6o4-HsZ0CwKJKhD97v9-m0ejLxSgXrz65USk?foo=some_foo"
4. Type any letter in field, no result found.
5. If u debug fetch()
in tagify.js:
/tagify_autocomplete/user/group_learners_selection/dWc0zRBy9Zz51a-LL_-RnTZNfHL9eK5ra-dlcX6uXlE?foo=some_foo?q=d&selected=
.
6. Notice this part foo=some_foo?q=d
. Instead of '?' it should be and param '&'.
Otherwise controller will receive array of parameters in request:
[
'foo' => 'some_foo?q=d',
'selected' => '',
],
When it should like that to work properly:
[
'foo' => 'some_foo',
'q' => 'd',
'selected' => '',
],
Active
1.2
Code
Thanks Oleksandr!
I've been testing it and everything works fine. Good catch!
It will be released on 1.2.32