Hey i have a dynamic page with a search and a table.
This is the code thats called when the Search is updated:
function update_filter(input) {
$w(‘#gegner’).setFilter(wixData.filter()
.eq(‘clan’, $w(‘#clan’).getCurrentItem()._id)
.contains(‘gegner’, input));
update_addButton();
}
In Preview everything works fine, on live it just ignores my .eq statement and filters only by the search input, not the dynamic page item
Whats the problem?