Forum Discussion
_anomDiebolt_
9 years agoQrew Elite
(1) Go to the field page for the table - the URL has this format:
h t t p s ://<subdomain>.quickbase.com/db/<table dbid>?a=listfields
(2) Then press F12 to expose the developer tools for your browser
(3) In the console tab paste one of these two scripts
_.pluck(gTableInfo[gReqDBID].finfo, "name").join(",")
_.pluck(gTableInfo[gReqDBID].finfo, "name").join("\n")
(4) Copy out your list of field names
(5) Celebrate your newfound joy of using JavaScript
h t t p s ://<subdomain>.quickbase.com/db/<table dbid>?a=listfields
(2) Then press F12 to expose the developer tools for your browser
(3) In the console tab paste one of these two scripts
_.pluck(gTableInfo[gReqDBID].finfo, "name").join(",")
_.pluck(gTableInfo[gReqDBID].finfo, "name").join("\n")
(4) Copy out your list of field names
(5) Celebrate your newfound joy of using JavaScript
- KimberlyKallo7 years agoQrew Membersweet!! great tip!