I copied these codes, but it does not filter the correct database on the repeater.
Code:
//===================================================================
import wixData from ‘wix-data’;
export function Anopesq_change(event) {
filtro($w(‘#Anopesq’).value)
}
function filtro(pesquisa) {
$w('#dynamicDataset').setFilter(wixData.filter().eq('CarroNome', pesquisa));
}