Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to fill remote data into picker, but it crashes.

here is the code:

var countryDataArray = []; 
var picker_country = Ti.UI.createPicker
({
    bottom:'-251dp'
});
win.add(picker_country);
getCountryList(); //to call web service

//Gets country list from the server
function getCountryList()
{
getCountry.onload = function()
    {
        var jsonString = JSON.parse(this.responseText);
        var msg = jsonString.Message;
        var success = jsonString.IsSuccess;

        countryDataArray = jsonString.dsetData.CountryList;

        Ti.API.log('countryList value:'+countryDataArray);
        activity.hide();

        if(countryDataArray.length > 0)
        {
            for (var i=0; i < countryDataArray.length ; i++) 
            {
                 data[i] = Ti.UI.createPickerRow(
                 {
                    title:countryDataArray[i].Name, 
                    country_id:countryDataArray[i].ID,
                    fontSize:18
                 });
             };
        }   
        picker_country.add(data);
    }

what's wrong with this code ? code works fine with static data !!! static data :-

var data = [
    {title:'Bananas',custom_item:'b',fontSize:18},
    {title:'Strawberries',custom_item:'s',fontSize:20},
    {title:'Mangos',custom_item:'m',fontSize:22,selected:true},
    {title:'Grapes',custom_item:'g',fontSize:24}
];
share|improve this question

1 Answer

up vote 0 down vote accepted

Solved !!! I Don't why but I just assign the data to picker before adding the picker into the view and it get solved !

picker_country.add(data);
win.add(picker_country);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.