top of page

Forum Posts

Yael Benjamin
Oct 29, 2017
In Coding with Velo
Hi! I'm trying to make the images titles appear in deafult and not only when mouse hover. Is is possible ? Thanks
0
0
26
Yael Benjamin
Oct 03, 2017
In Coding with Velo
https://y76353.wixsite.com/medi tried as in the example for the first 4 boxs - thanks! function toggleFold(index) { let $fold = $w('#fold' + index); let $arrowDown = $w('#arrowDown' + index); let $arrowRight = $w('#arrowRight' + index); // toggle the fold at the index if ($fold.collapsed) { $fold.expand(); $arrowDown.show(); $arrowRight.hide(); } else { $fold.collapse(); $arrowDown.hide(); $arrowRight.show(); } // collapse the other folds [1,2,3,4] .filter(idx => idx !== index) .forEach(idx => { $w('#fold' + idx).collapse(); $w('#arrowDown' + idx).hide(); $w('#arrowRight' + idx).show(); }) } export function headerBox1_onClick(event) { toggleFold(1); } export function headerBox2_onClick(event) { toggleFold(2); } export function headerBox3_onClick(event) { toggleFold(3); } export function headerBox4_onClick(event) { toggleFold(4); } export function headerText1_onClick(event) { toggleFold(1); } export function headerText2_onClick(event) { toggleFold(2); } export function headerText3_onClick(event) { toggleFold(3); } export function headerText4_onClick(event) { toggleFold(4); }
0
6
445
Yael Benjamin
Oct 03, 2017
In Coding with Velo
Hi, i was windering what is the simplest way to create the following text title that when clicking on in a box while additional text appears - expend and collapse - ?
0
1
64
Yael Benjamin
Oct 02, 2017
In Coding with Velo
I was wondering how to do this - if i have a number of buttons and i want that each click on the button will be connected to a cetain slide from a slide show which appears near the list. mean every click on the button will move the slideshow to the relevant slide. Is there any example of how to do it ? Thanks!
0
6
913
Yael Benjamin
Sep 12, 2017
In Coding with Velo
i was wondering why the code is not working ? can you please have a look? did exactly as the example https://y76353.wixsite.com/rotoniv/copy-of-1 this is my code: function toggleFold(index) { let $fold = $w('#fold' + index); let $arrowDown = $w('#arrowDown' + index); let $arrowRight = $w('#arrowRight' + index); // toggle the fold at the index if ($fold.collapsed) { $fold.expand(); $arrowDown.show(); $arrowRight.hide(); } else { $fold.collapse(); $arrowDown.hide(); $arrowRight.show(); } // collapse the other folds [1,2,3,4] .filter(idx => idx !== index) .forEach(idx => { $w('#fold' + idx).collapse(); $w('#arrowDown' + idx).hide(); $w('#arrowRight' + idx).show(); }) } export function headerBox1_onClick(event) { toggleFold(1); } export function headerBox2_onClick(event) { toggleFold(2); } export function headerBox3_onClick(event) { toggleFold(3); } export function headerBox4_onClick(event) { toggleFold(4); } export function headerText1_onClick(event) { toggleFold(1); } export function headerText2_onClick(event) { toggleFold(2); } export function headerText3_onClick(event) { toggleFold(3); } export function headerText4_onClick(event) { toggleFold(4); } Best , Yael
0
4
194
Yael Benjamin
Aug 04, 2017
In Coding with Velo
when trying to sync from live version and to live version . getting - An error has occurred. Check your Internet connection and try again. Any ideas why >?
0
2
130
Yael Benjamin
Aug 04, 2017
In Coding with Velo
Why im getting this message i my database when im trying to change titles if i've already saved the site> Thanks
0
4
49
Yael Benjamin
Aug 04, 2017
In Coding with Velo
I've uploaded data to new database. When connecting the table to the database im getting only the titles from the database and not the whole information. - In addition , im not sure how to do it but i want that when peole choose one row from the table and click and the " book now" button they'll go to a new slide which includes the selected information from the table and we'll have to confirm checkboxs. Atleast , Im still now getting how to connect all of this and get it as an email as final step. Thanks!
Table Data from Datbase content media
0
1
93
Yael Benjamin
Jul 30, 2017
In Coding with Velo
I was wondering if there's any option to remove the requried mark from a regular contact form using wix code? i want to mark this field as optional or to remove it. Thanks, Yael
0
3
103
Yael Benjamin
Jul 27, 2017
In Coding with Velo
can someone please share with if its availble already ? Thanks
1
2
148
Yael Benjamin
Jul 27, 2017
In Coding with Velo
Hi I have few questions in mind since i got the access to beta: 1. When using user input element which connected to database , how can i also get the same information sends to the database also to the email box once user submit ? Just to make it clear - I want to get the same information as received in the database to an email box? 2. Adding an external code - just wondering how to add an external script ? I'm not a coder but I feel ok working with code so i've tried to add something from outside - lets say im trying to do something which is pretty simple- do add function to a button that once user clicks on the button, the button takes him 1 page back to previous page ? Thanks Yael
0
7
114

Yael Benjamin

More actions
bottom of page