Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am developing iphone application in Titanium. Unable to set addEventListener to my dynamically receiving contents.

Here is my code:

var receivedAccountsLength = Ti.App.userAccounts.length;

var topFrom = 100;
for(var i=1;i<receivedAccountsLength;i++)
{
    var cont = Ti.UI.createLabel({text: Ti.App.userAccounts[i].accountName , width: 100, height: 30, borderWidth: 1, top: topFrom });   
    win.add(cont);  

    cont.addEventListener('click', function()
    {
        alert("cont");
    });

    topFrom += 50;
}

can any one..

share|improve this question

1 Answer

up vote 1 down vote accepted

@suresh Try this code this is Absolute working for you. first you get your "eventListener object" then you can get you its property, for help just Copy paste this code

 var receivedAccountsLength = Ti.App.userAccounts.length;

    var topFrom = 100;
    for(var i=1;i<receivedAccountsLength;i++)
    {
        var cont = Ti.UI.createLabel({text: Ti.App.userAccounts[i].accountName , width: 100, height: 30, borderWidth: 1, top: topFrom });   


        cont.addEventListener('click', function(event)
        {
            alert("cont : "+ event.source.text);
        });
        win.add(cont);  
        topFrom += 50;
    }

If, working the enjoy Titanium .....Cheers...!

share|improve this answer
still not working. I dont get any alerts – suresh.g Sep 29 '12 at 12:44
you try custom this code like for(var i=1;i<receivedAccountsLength;i++) replace with "for(var i=1;i<10;i++)" and text: Ti.App.userAccounts[i].accountName Replace with text:"Name "+i – MRT Sep 29 '12 at 12:48
k i check it now – suresh.g Sep 29 '12 at 12:49
Thanks for ur help. But,sorry. i unable to get alert message. – suresh.g Sep 29 '12 at 12:55
when you click then, you not got any alert message i'm right plz, send me your code (for....) – MRT Sep 29 '12 at 13:02
show 2 more comments

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.