first commit

This commit is contained in:
2024-10-25 14:16:28 +02:00
commit 925276dbb2
33795 changed files with 4780077 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
$(document).ready(function() {
$("input[name='filter_column_name']")
.autocomplete(admin_module_edit_url+'&ajax=1&exclude_packs=0&excludeVirtuals=0&excludeIds=99999999999&configure=boproductfinder', {
minChars: 2,
autoFill: true,
max: 30,
matchContains: true,
mustMatch: false,
scroll: false,
cacheLength: 0,
width: 400,
formatItem: function (item) {
return '<img style="border:1px solid #898989; margin-right:5px; float:left; width:40px; height:auto;" src="'+item[2]+'">' + ' ' + item[0];
}
}).result(function (e, p) {
document.location.href=p[3];
});
});