top of page

Forum Posts

keehong.koh
Mar 13, 2020
In Coding with Velo
Hi. I have an issue with date picker on my website. When I change year/month on the date picker, it triggers all the validation of all my input fields in the form. This is my website: https://www.dwellintern.com/for-employers The date picker is under the Preferred Period. Can I know is there any workaround or solution for this issue?
0
1
43
keehong.koh
Feb 27, 2020
In Coding with Velo
Hi. I have a table with pagination. Whenever I navigate to page 2 and do a filter and the table will show blank. It doesn't have any issue when filtering on other pages. Is there any way to force the table to go back to page 1? My website : https://www.dwellintern.com/InternshipListings My code : export function searchButton_onClick() { //Add your code for this event here: let filterText = $w('#dropdown4').value; let filterText2 = $w('#input13').value; let filterText3 = $w('#dropdown5').value let filterText4 = $w('#input14').value console.log("F1=" + filterText); console.log("F2=" + filterText2); console.log("F3=" + filterText3); console.log("F4=" + filterText4); $w('#datasetJobApplication').setFilter(wixData.filter() .contains('dropdownField',filterText) .contains('position2',filterText2) .contains('position',filterText3) .contains('firstName',filterText4) ) .then( () => { console.log("Filter successfully."); console.log($w('#datasetJobApplication').getTotalCount()); $w("#table1").refresh(); }) .catch( (err) => { console.log("setFilter error encountered, err="+err); }); }
0
3
125

keehong.koh

More actions
bottom of page