The auto complete functionality within reports works very nicely for me. I've recently wanted to implement free tagging for a particular feature, which is not supported within mydbr, so i wanted to base my solution on a library called taggle. A basic working example is included in the fiddle below:
https://jsfiddle.net/okcoker/j5yeon1x
The issue is, this code works completely within the fiddle, but in mydbr the autocomplete functionality does not work at all.
I then created an html file on my server to verify what I was seeing. I started with these imports, exactly as found in the report page.
<script src="/lib/external/jquery/js/jquery.min.js?v=4075"></script>
<script src="/lib/external/jquery/js/jquery-ui.min.js?v=4075"></script>
<script src="/lib/external/jquery/js/assets.js?v=4075"></script>
<script src="/lib/external/codemirror/editor.js?v=4075"></script> <script src="/lib/javascript/assets.js?v=4075"></script>
<script src="/user/taggle.min.js"></script>
Sure enough, with all these JS imports from the report page included, autocomplete did not work, so I removed things until I found what was breaking it for me.
It turned out, by removing only
<script src="/lib/external/jquery/js/assets.js?v=4075"></script>
it fixed it for me.
If anyone would like direct links to the test pages to verify the behaviour I'm seeing, I'm happy to share.
As it stands, I'm not sure where to go from here. Can you guys be of any assistance?