# How to Populate records to dropdown from response.record using Titanium sdk

**URL:** https://community.dreamfactory.com/t/how-to-populate-records-to-dropdown-from-response-record-using-titanium-sdk/1340
**Category:** Client SDKs
**Created:** [August 6, 2015, 4:31am UTC](https://community.dreamfactory.com/t/how-to-populate-records-to-dropdown-from-response-record-using-titanium-sdk/1340 "2015-08-06T04:31:01Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Abheshek\_khatri](https://avatars.discourse-cdn.com/v4/letter/a/48db29/32.png) [@Abheshek\_khatri](https://community.dreamfactory.com/u/Abheshek_khatri)
#### Post date: [August 6, 2015, 4:31am UTC](https://community.dreamfactory.com/t/how-to-populate-records-to-dropdown-from-response-record-using-titanium-sdk/1340/1 "2015-08-06T04:31:01Z")

</div>

Hi All,

If anyone can tell me how to populate records in dropdown box using titanium sdk provided by dreamfactory.  
I have connected my mobile app to mongodb and I am getting data from get method in response.record (when i use [Ti.UI.info](http://Ti.UI.info) i am able to see data from db) but I am not able to populate that data in dropdown.

any help appreciated.

---

<div class="post-metadata">

### Author: ![jeffreystables](https://yyz1.discourse-cdn.com/flex035/user_avatar/community.dreamfactory.com/jeffreystables/32/173_2.png) [@jeffreystables](https://community.dreamfactory.com/u/jeffreystables)
#### Post date: [August 6, 2015, 6:50pm UTC](https://community.dreamfactory.com/t/how-to-populate-records-to-dropdown-from-response-record-using-titanium-sdk/1340/2 "2015-08-06T18:50:34Z")

</div>

Sounds like you’ll want to parse the received JSON into elements for a `Titanium.UI.Picker`. [Here’s Titanium’s docs on working with received JSON](http://docs.appcelerator.com/platform/latest/#!/guide/Working_with_JSON_Data-section-29004905_WorkingwithJSONData-ReceivingandparsingJSONdata), and [here’s the docs on `Picker`](http://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.Picker).

[This post on StackOverflow](http://stackoverflow.com/questions/10287437/titanium-creating-a-single-column-picker-with-data-from-json) and [this post on Titanium’s developer forum](https://developer.appcelerator.com/question/133109/titanium-picker-crashes-with-remote-data) appear to cover the use case of populating a `Picker` with received data.
