top of page

Forum Posts

Bim Berrye
Jun 11, 2018
In Coding with Velo
Is there anything which can be done to reduce the load speed of tables which are connected to a database ? The website loads in good time however there is a significant delay before the table displays its information, was wondering if pagination would help any ? or any other methods available ?
0
2
58
Bim Berrye
Jun 01, 2018
In Coding with Velo
Is it possible to use database hooks to trigger a pop window , for example when one the images below is clicked/hover over in the table (displaying information connected in a database) that a pop window with the larger version image be shown in a pop up window ?
Can database hooks be used to create a pop up window? content media
0
2
45
Bim Berrye
May 30, 2018
In Coding with Velo
I am trying to implement a user input filter which has the ability to filter based on two different fields (title & type to enable a full filter of all fields), I have tried the code listed below while I am getting no errors and I am able to successfully filter using the first field title however when i search for an item in my next field type the screen returns no records only a blank field . If anyone can lend me any assistance I would be grateful See code below : - // For full API documentation, including code examples, visit http://wix.to/94BuAAs import wixData from 'wix-data'; // For full API documentation, including code examples, visit http://wix.to/94BuAAs $w.onReady(function () { //TODO: write your page related code here... }); export function filterButton_onClick(event) { $w("#dataset1").setFilter(wixData.filter() .contains("title", $w("#filterInput").value) .or(wixData.filter() .contains("type", $w("#filterInput").value) ) ) } export function button1_click(event, $w) { $w("#dataset1").setFilter(wixData.filter("all")); }
0
2
912

Bim Berrye

More actions
bottom of page