Bug #90753
closedwidget autocomplete url has still wrong masking with &
0%
Description
i still get such an url:
?id=73&type=7076&fluid-widget-id=a82f5243badf6301daf99a055366e145&action=autocomplete&term=test
it does not work because of the "&" masking chars.
TYPO3 9.5.14:
in
sysext/fluid/Resources/Private/Templates/ViewHelpers/Widget/Autocomplete
index.html
has this code:<script type="text/javascript">
jQuery(function() {
jQuery("#{id}").autocomplete(<f:format.raw value="{" />
source: "{f:widget.uri(action:'autocomplete', ajax: 1)}",
minLength: 2
});
});
</script>
must this not be?:
<script type="text/javascript">
jQuery(function() {
jQuery("#{id}").autocomplete(<f:format.raw value="{" />
source: "{f:widget.uri(action:'autocomplete', ajax: 1)->f:format.raw()}",
minLength: 2
});
});
</script>
Updated by Markus Dübbert over 4 years ago
the url i posted above is wrong. it has
&instead of &.
This means that it does not work.
Updated by Susanne Moog over 4 years ago
- Is duplicate of Task #90091: Update Autocomplete widget template ajax url added
Updated by Susanne Moog over 4 years ago
- Status changed from New to Closed
This is a duplicate of issue #90091 - please refer to that issue and test the patch linked there.
Updated by Susanne Moog over 4 years ago
- Related to Bug #84575: Fluid autocomplete widget not working anymore added