Search bar

Hi there, i cannot figured out what i did wrong my search bar not working, this is my testing site:https://lucasgariglia.wixsite.com/wixcode and that’s the code i am using: import {local} from ‘wix-storage’;

import wixData from ‘wix-data’;

$w.onReady( function () {

var sameWord = local.getItem(“searchWord”);

$w("#searchBar1").value = sameWord; 

$w("#searchBar1").placeholder = sameWord; 

$w('#dataset1').onReady( function  () { 

    search(); 

}); 

});

export function searchButton1_click_1() {

search(); 

}

function search() {

wixData.query('Name') 

.contains(‘name’, $w(“#searchBar1”).value)

.or(wixData.query(‘Name’).eq(‘number’, $w(“#searchBar1”).value))

  .find() 

   .then(res => { 

$w(‘#repeater1’).data = res.items;

}); 

}

Hi Luca!

I looked at your site and couldn’t find anything wrong with it.
It is actually working pretty good!

Do you still experience the same issues?

Please let me know.

Doron.

Hi Doron, yes it’s not all the time working on Chrome and flickering on results page load. I also noticed an error with the placeholder in preview. Anyway try to search for “luca” or “sgariglia”, could you enter in my editor and have a look at my code please?
This what i have in the results page:

import { local } from ‘wix-storage’;
import wixData from ‘wix-data’;

$w.onReady( function () {
var sameWord = local.getItem(“searchWord”);
$w(“#searchBar1”).value = sameWord;
$w(“#searchBar1”).placeholder = sameWord;
$w(‘#dataset1’).onReady( function () {

    search(); 

}); 

});

export function searchButton_click_1() {
search();
}

function search() {
wixData.query(‘Stores/Products’)
.contains(‘name’, $w(“#searchBar1”).value)
.find()
.then(res => {
$w(‘#repeater1’).data = res.items;
});
}

Hi Luca!

I did check your editor and as I said the code is working as well as the search bar.
Can you take a screenshot/screencast of the issues you encounter?
Maybe check the console log of the browser?

I’ve tried using your site both on Chrome (latest version) and Safari.
What Chrome version are you using?
Let’s try figure it out together :slight_smile:

Doron.

the issue is the first time i search the product “sgariglia” the result page is blank then if try again from the home page it works.