Hola,
I have two collections. a titles collection and a main collection i followed wix code tutorial on filter as user must search 2000+ items i cant use dropdown as it doesn’t show all items and user cant be expected to do this even if it worked.
If I get my results that I display in a table can user select the row and add data to main collection? If not how should the user select the title?
I need the main collection to show the combined information, reason being is that in a repeater on a dynamic page i must show all data combined for user info and titles in the one collection.
Here is the wix code to filter
export function iTitle_keyPress(event, $w) {
//Add your code for this event here:
filter($w(‘#iTitle’).value);
}
function filter(title) {
$w(“#dataset2”).setFilter(wixData.filter().contains(‘fieldKey’, title))
}
i have two collections
title
main
tilte is referenced into main
many tanxs