Search display with database

Hi
I have a search box with a table but I want to display with images. I want If i click on the image go to de link but I don’t do that.

import wixData from ‘wix-data’;

//For full API documentation, including code examples visit http://wix.to/94BuAAs

$w.onReady(function () {
//TODO: import wixData from ‘wix-data’;
});

export function searchButton_onClick(event){
wixData.query(‘Gyeon’)
.contains(‘nombre’, $w(‘#textInput1’).value)
.find()
.then(res => {
$w(‘#table1’).rows = res.items;
});
}

Hi Esteban,

Take a look at the Table Index example. It pretty much does what you’re trying to do. You can load it into your editor, play with it, and then modify it to fit your own use.

Have fun,

Yisrael

Thanks for the answer Yisrael

Is ready https://www.ipecr.com/busqueda but I want to use Enter and not the button. Is that Posible?

Hi Esteban,

I tried your site but I get an error when trying to open it.

What do you want to use the Enter for? What action?

Yisrael