I am using the same code with 1 parameter search but it is not working…No result is displayed in the table…
import wixData from ‘wix-data’;
$w.onReady(function () {
});
export function searchButton_onClick() {
wixData.query(‘Member’)
.contains(‘name’, $w(‘#input1’).value)
.find()
.then(res => {
$w(‘#table1’).rows = res.items;
});
}