We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using an TextField inside parameterFields, after submitting your search, spaces are getting replaced by + icons.
+
See the screenshot below for some "example";
Simple work-around is to use str_replace("+", " ", $params['Param']) to replace the +'. But this is not ideal (and confusing for end-users).
str_replace("+", " ", $params['Param'])
Also experiencing this issue when searching for an member with SilverstripeMFA report; https://github.com/silverstripe/silverstripe-mfa/blob/4/src/Report/EnabledMembers.php
The text was updated successfully, but these errors were encountered:
Sounds like the input is either being double url encoded by the server or not url decoded in the frontend
Sorry, something went wrong.
@dhensby Also thinking in this direction.
Good to know; If I replace the + (%2B) in the URL by (%20), everything works fine. But when pressing "filter" again, the space again gets replaced.
%2B)
%20
Need to investigate some further to see where the space gets replaced...
No branches or pull requests
When using an TextField inside parameterFields, after submitting your search, spaces are getting replaced by
+
icons.See the screenshot below for some "example";
Simple work-around is to use
str_replace("+", " ", $params['Param'])
to replace the+
'. But this is not ideal (and confusing for end-users).Also experiencing this issue when searching for an member with SilverstripeMFA report; https://github.com/silverstripe/silverstripe-mfa/blob/4/src/Report/EnabledMembers.php
The text was updated successfully, but these errors were encountered: