List of objects into picklist?

How can I get a list of the objects in an org into a picklist?

You should be able to leverage the Salesforce Rest API to do this! If you set up an SFDC REST datasource (skuid-labs/experiments/dataSources/SalesforceREST at master · skuid/skuid-labs · GitHub) for your org, you can use the url “/services/data/v37.0/sobjects/” (more info here: Salesforce Developers) in a rest model on your page to get a list of objects, and use that model as the source for your picklist.

I now have my list of objects. Thanks.