Okay, so I’m trying to do something exactly similar to Hacker News in which the user inputs a Title and URL, then it comes out as one single link on the main page with up/down votes functionality.
However, I’m stuck on two things:
Moving the right data type from my submit page to my index page’s repeating groups.
Thanks, I fixed that, but it didn’t solve the problem.
I’ll explain in better detail what I’m trying to do. I have two inputs: Title & URL.
And if all goes well then, the Title would show up on my index page and I could click it and it would direct me to the URL that was inputted earlier. Right now, only the Title show’s up. The problem is that I’m passing through the wrong data type through my Go to page action.
If you want to go to the URL of the submission, why would you navigate the user to the index page? Wouldn’t you open an external URL with the link provided?
User types the title of the article and copy/paste the link to the article.
User clicks “submit” and is taken to the index page (the main page for now). The user’s submission is listed in ranked descending order by the number of votes.
User clicks on the article submitted and is taken to the address of the URL submitted.
Already tried that. I feel like there is something missing. Are you sure there’s not some kind of workflow I’m supposed to include? Like how does the data know that when I click the title on index page, that it will take me to the link pasted in submit page?
You are displaying the submissions in a repeating group, right? So each cell corresponds to a particular submission. Clicking on the submissions title would start a workflow.
The workflow would be “open an external website” or “open a URL in a new tab” and the URL would be “current cells LINK”