top of page

Forum Posts

Dennis Celen
May 24, 2023
In Coding with Velo
I'm trying to update my collection with a recurring jo, it works manually with a button but not with the recurring jobs. any idea if I'm missing something. // The following code is an example of a job. Adapt the code for your specific use case. { "jobs": [{ // Option 1: Define execution interval using a cron expression "functionLocation": "/dataUpdate.jsw", // Relative to Backend folder, started by slash "functionName": "dataUpdateFunction", "description": "Update data every minute", // Optional "executionConfig": { "cronExpression": "* * * * *" // Set a recurrence of no less than 1 hour // Read about Cron expressions: [https://en.wikipedia.org/wiki/Cron#CRON_expression] } }, ] }
0
1
9
Dennis Celen
May 22, 2023
In Site & Page Design
is there an easy way to set the max width of the editor x website to 1440px?
0
1
18
Dennis Celen
Feb 16, 2023
In Coding with Velo
Hi there I'm trying to find my current location in an iframe on our website. In Wix the geolocation does not work but when I try the same code in codepen the it just works .. Anybody any idea what the issue could be?
0
5
75
Dennis Celen
Dec 06, 2022
In Coding with Velo
hi there does anybody know how to add a button in Editor x so people that subscribe will not be added on the subscription list in Wix but that they will be added in Odoo crm?
0
1
3
Dennis Celen
Nov 14, 2022
In Coding with Velo
hi there is it possible to have a searchbar that accepts multiple words and filters a repeater depending on the words that are entered in the searchbar? at this moment i have a searchbar that only accepts 1 word that is looked up in 3 different columns of a database. function filter(search) { if (searchWord !== search) { $w("#dataset1").setFilter(wixData.filter().contains('category', search) .or(wixData.filter().contains("questions", search)) .or(wixData.filter().contains("explenation", search)) //Insert more field filter here ====> here <==== ) .then(countItems) searchWord = search } }
0
16
82

Dennis Celen

More actions
bottom of page