I have watched the video on how to create a search box with a repeater.
I think I have the code exactly like it was type with my changes for titles.
It will load the box and the repeater just like in the video but when I type something in the search box nothing happens. Here is the code. Thanks for any help. Been 30 years since I coded
import wixData from “wix-data” ;
export function ititle_keyPress(event, $w) {
console.log($w(‘#ititle’).value);
filter($w(‘#ititle’).value);
}
function filter(title){
$w(‘#dataset1’).setFilter(wixData.filter().contains(‘Type’, title));
}