Hi, I wrote a few lines of code, that rechecks selected items Add the code in init.php after line 188 (search.$response.html(data);) ``` search.$response.find('input').each(function (k, v) { if (search.$idInput.val().split(',').indexOf(v.value) >= 0) { jQuery(v).prop('checked', true); } }); ```