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 close the window with back button it does when i press the back button 2nd time. In my code I am running a yql query and inserting data obtained from the query into rows and then adding rows into the table. I can't understand why i need to press back button 2 times please help. Thanks in advance following is my code:

var DetailWin = Titanium.UI.currentWindow;
var information = new Array("Company Name: ", "Company Location:", "Position Type:", "Employee            Type:", "Minimum Education:", "Vacancy:", "Gender:", "Salary:");
var var1=Ti.App.lurl;

var rowData = [];

Titanium.Yahoo.yql('select * from html where url="' + var1 + '" and xpath="//p/span" limit 8',     function(e) {

    var results = e.data.span;

    for (var i = 0; i < results.length; i++) {

        var rss = results[i];
        var rssRow = Titanium.UI.createTableViewRow({
            top : 200,
            height : 45,
            className : 'rssrow'

        });
        var titleLabel = Titanium.UI.createLabel({
            text : information[i] + "     " + rss,
            font : {
                fontSize : 16,
                fontWeight : 'bold'
            },
            width : 'auto',
            top : 5,
            left : 40,
            height : 20,
            color:'black'
        });

        rssRow.add(titleLabel);

        rowData.push(rssRow);
    };
    jobdetail.setData(rowData);

});

var jobdetail = Titanium.UI.createTableView({
    top:'12%',

 });

DetailWin.add(jobdetail);

var backbut = Titanium.UI.createButton({ 
   title:'Back',
   top:'2%',
   width:'20%',
   height:'auto',
   left:'5%'
});

backbut.addEventListener('click', function(){

DetailWin.close();

});
DetailWin.add(backbut);
share|improve this question
Did you tried writing an alert inside the click event? – Anand Dec 5 '12 at 7:08

1 Answer

you can handle android back button by adding an event to the window.

DetailWin.addEventListener('android:back', function(){

DetailWin.close();

});
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.