Hello community,
I have a long database list of race registrants, but I couldnt get my page to load today and then figured out why. Last night I imported a tun of dummy registrants to test out the check out process.
I was able to get my page to laod by limiting the data set to only display 20, but I really would like to let it display all of the entries and allowing for searching.
Any ideas?
any way to add a scroll wheel to only the repeater and not just making a huge long page?
Hey Logan, how about an infinite loading option? Please contact me if you’re interested.
is there any way that I can do the database qurying in the backed. For some reason when I try to return the results to the page code, the result are undefined. it makes no sense. in fact returning the results from any querying function is for some reason undefined. however if you console print the array before returning it is correct.
@logan Have not seen your code, but I will take a wild guess: your return-statement in the backend is too late. SO if you do this:
result=do_some_query()
return result
then result will be undefined: you did not wait for the Promise to be fullfilled. INstead do this:
return result=do_some_query()
Good luck