top of page

WIX Resources Table
Title | Description | URL (text) | CodeExample |
|---|---|---|---|
Audio JavaScript code | Excellent audio coding resource | https://github.com/goldfire/howler.js/ | need to download |
Wix if code example | An example of code | https://www.wix.com/velo/forum/coding-with-velo/collapse-elements-when-dataset-returns-0-results | import wixUsers from 'wix-users'; import wixLocation from 'wix-location'; import wixWindow from 'wix-window'; import wixData from 'wix-data'; //Onderstaande code zorgt ervoor dat BESTEMMINGEN alleen getoond worden als deze beschikbaar zijn in de dataset. $w.onReady(() => { dataset4() dataset1() dynamicDataset() }); //Onderstaande code zorgt ervoor dat ITEMS alleen getoond worden als deze beschikbaar zijn in de dataset. function dataset4() { $w("#dataset4").onReady(() => { let count = $w("#dataset4").getTotalCount(); if (count === 0) { $w("#columnStrip162").collapse(); $w("#columnStrip163").collapse(); $w("#repeater15").collapse(); } else { $w("#columnStrip162").expand(); $w("#columnStrip163").expand(); $w("#repeater15").expand(); } }); } function dataset1() { $w("#dataset1").onReady(() => { let count = $w("#dataset1").getTotalCount(); if (count === 0) { $w("#columnStrip93").collapse(); $w("#columnStrip161").collapse(); $w("#repeater14").collapse(); } else { $w("#columnStrip93").expand(); $w("#columnStrip161").expand(); $w("#repeater14").expand(); } }); } function dynamicDataset() { $w("#dynamicDataset").onReady(() => { let description = $w("#dynamicDataset").getCurrentItem().cta; //text is the field you want to get its text $w("#text426").text = description + "."; }) } |
Roon labs | Interface controller and linking artists etc | https://roonlabs.com/ | Hfffhjfccjc |
Tap Tempo online resource | Free online tap tempo calculator | https://www.beatsperminuteonline.com/ | English Beats Per Minute Calculator and Counter: Tap key, touchscreen or mouse to the beat to find your BPM tempo in seconds. |
Create Editable Table for users | would like to create a table that can be populated with data from the database, but can be edited similar to an excel spreadsheet. Googlesheets is not an option. Objective is to create user-specific page with table where user can modify the data on the table and have the data stored in a database. Each record in the database would be a row in the table. User should simply open the page and, see t | https://www.wix.com/velo/forum/coding-with-velo/create-editable-table | I am able to do this with a table and required number of input fields. When user lists a row in the table, same data will be displayed in the input fields for edit. After edit, use a button to save data into the collections. |
Reducer () function on Arrays | The reduce() method executes a user-supplied “redu | https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/reduce#sum_of_values_in_an_object_array | const array1 = [1, 2, 3, 4]; const reducer = (accumulator, currentValue) => accumulator + currentValue; // 1 + 2 + 3 + 4 console.log(array1.reduce(reducer)); // expected output: 10 // 5 + 1 + 2 + 3 |
iScroll js App | a quick solution to your varied scrolling features | https://iscrolljs.com/iscroll-versions/ | to help further enhance the performance, it is made available in 5 different flavors. |
Pinned / Fixed Elements for MobileDdevices | article explores ways & relevant issues | https://bradfrost.com/blog/post/fixed-position/ | ... |
Optimizing Your Fixed Position App for Mobile View | Although we don't yet support mobile view for fixe | https://devforum.wix.com/kb/en/article/optimizing-your-fixed-position-app-for-mobile-view | Wix.Utils.getDeviceType()). |
Pinning on mobile version | helpful forum post showing workarounds for Pins | https://www.wix.com/velo/forum/coding-with-velo/pin-custom-button-on-mobile-customize-quick-action-buttons | includes numerous work arounds |
Chords.com | excellent song chord chart website with real-time | https://chordu.com/ | https://chordu.com/chords-tabs-olivia-rodrigo-drivers-license-official-video--id_ZmDBbnmKpqQ |
test x | desc | url x | code x |
bottom of page