I had it working for a second and tried something else in the lines of code & now for the life of me I can’t get it working again…
import wixData from “wix-data”;
// For full API documentation, including code examples, visit Velo API Reference - Wix.com
$w.onReady( function () {
$w(“#gobutton”).onClick(()=>{
$w(“#dataset1”).setFilter(wixData.filter()
.contains(“aL”, $w(“#Type”).value)
.contains(“paragraph”, $w(“#textBox1”).value)
.between(“price”,parseFloat($w(‘#pricefrom’).value), parseFloat($w(‘#priceto’).value)))
});
});
Here is my code. Any help would be appreciated. I am brand new @ coding.