Discussions

 View Only
  • 1.  Table Home Page URL

    Posted 10-17-2017 20:16
    Do table home page URL's change if the report changes. I am thinking of adding a redirect to a table and want to land on its home page. Should I just use the URL from the browser or is there a more consistent way native to Quickbase, so something along the lines of:

    URLRoot() & "db/" & [_DBID_TASKS] 
    Which just brings me to our homepage for the whole app, when I was thinking it would bring me to the Task table. _Should I use the URL I see in my browser or is there something else to bring me to tables home page?


  • 2.  RE: Table Home Page URL

    Posted 10-17-2017 20:27
    You need to use
    URLRoot() & "db/" & [_DBID_TASKS] & "?a=td"

    The URL you entered was incomplete and rather than error out Quick Base was kind to you and defaulted to the Application Dashboard.


  • 3.  RE: Table Home Page URL

    Posted 10-17-2017 20:28
    Thanks coach!