Hi,
Regarding naming the price, you can add static symbol before the text, Ex:
$w("#text").text = " € " + $w("#theValue");
For the range issue, here is how it goes with .ge AND .le :
export function Search_click(event, $w) {
let firstValue = parseFloat(($w("#dropdown1").value));
let secondValue = parseFloat($w("#dropdown2").value);
wixData.query("DatasetName")
.ge("price", firstValue)
.le('price', secondValue)
.find()
.then( (results) => {
console.log(results.items); // will show the result of the filtering
} )
.catch( (error) => {
console.log(error)
} );
}
For more information about the repeater and how to fill out the data, please check THIS
Good Luck!
Best,
Mustafa