Hello friends,

I am developing an app using Google Place API in Titanium Development and successfully got data and display in tableview and add button in each row but my issue is that I want to get name and address on button click in each row so please give me idea or any link to solve my issue.

Please take a look in my screenshot so on btnclick I want to get name and address.

Thanks in advance.

var categoryName;   
var addressLabel;
var row;

var tableData=[];

PlacesListCells = function createRow() 
{ 
    //var tableData=[];

    var loader = Titanium.Network.createHTTPClient();

    var url = "https://maps.googleapis.com/maps/api/place/search/json?";    
    url = url + "location=" + lat + ',' + lon;
    url = url + "&radius=" + radius;
    url = url + "&name=" + name;
    url = url + "&sensor=" + sensor;
    url = url + "&key=" + key;

    Ti.API.info(url);
    // Sets the HTTP request method, and the URL to get data from
    loader.open("GET",url);
    // Create our HTTP Client and name it "loader"
    // Runs the function when the data is ready for us to process
    loader.onload = function() 
    {
        var obj = JSON.parse(this.responseText);
        Ti.API.log(obj);    
        var results = obj.results;
        Ti.API.log(results);


        for (var i = 0; i < results.length; i++)
        {
            categoryName = obj.results[i].name; 
            reference = obj.results[i].reference;
            Ti.API.log('Refernce:'+reference);

            // Create a row and set its height to auto
            row = Titanium.UI.createTableViewRow({height:'78'});

            var placeImage =  Titanium.UI.createImageView
            ({
                image:'../iphone/appicon.png',
                width:70,
                height:50,
                top:12,
                left:5
            });

            // Create the label to hold the tweet message
            var nameLabel = Titanium.UI.createLabel({
                //text:name,
                left:80,
                top:5,
                height:'auto',
                width:185,
                textAlign:'left',
                font:{fontSize:12}
            });

            // Create the label to hold the tweet message
            addressLabel = Titanium.UI.createLabel({
                left:80,
                top:25,
                height:'auto',
                width:185,
                textAlign:'left',
                font:{fontSize:14}
            });

            var arrowImage = Ti.UI.createImageView
            ({
                image:'../iphone/appicon.png',
                width:20,
                height:20,
                left:280,
                top:30
            });

            var favoriteButton = Ti.UI.createButton
            ({
                title:'btn',
                //font:{fontFamily:'Helvetica Neue',fontSize:15},
                top:20,
                left:255,
                height:30,
                width:50,
                url:'../Images/favorite.png'
                //image:'../Images/favorite.png'
            });

            nameLabel.text = categoryName;

            getDetailsData(addressLabel,row,i);

            row.add(placeImage);
            row.add(nameLabel);
            row.add(addressLabel);
            row.add(favoriteButton);
            //row.add(arrowImage);

            tableData[i] = row;

            //set page title for each row
            row.pageTitle = nameLabel.text;

            favoriteButton.row = i;
            favoriteButton.addEventListener('click', function(e)
            {
                Ti.API.log('favoriteButton clicked on row ' + e.source.row +' at ' + new Date().getSeconds());
                alert('favoriteButton clicked on row ' + e.source.row);

                var index = e.source.row;
                var name = tableData[index];
                alert('name'+name);

            });
        }       
        tableView.setData(tableData);       
    };
    //-- Network error
    loader.onerror = function(e)
    {
        Ti.API.info('Network error: ' + JSON.stringify(e));
    };

    // Send the HTTP request
    loader.send();

    return  tableData;
};

enter image description here

link|improve this question

43% accept rate
1  
Please post the code you tried or the code you're using. – Tim Feb 16 at 5:46
plz see my updated code and also I got index successfully on button click but can't get name and address – Nikunj R. Jadav Feb 16 at 5:53
feedback

1 Answer

Once you have your index, you should be able to reference your original data source by that.

link|improve this answer
how can i do that plz give me code – Nikunj R. Jadav Feb 16 at 6:00
You already have the code - just look where you're generating the tableview rows – Tim Feb 16 at 6:00
just see my updated code and store data in tabledata array so how can I got name and address from this array – Nikunj R. Jadav Feb 16 at 6:12
tableData[e.source.row].nameLabel.text and ``tableData[e.source.row].addressLabel.text`, perhaps? – Tim Feb 16 at 6:47
no its not worked its return undefined value – Nikunj R. Jadav Feb 16 at 7:13
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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