i'm trying to use the "Popover " functionality in the titanium.

i went throught the kitchensink and built a code in my application but some how

i'm getting this error:

Result of expression 'Ti.UI.iPad' [undefined] is not an object.

i dont know what i'm doing wrong.

here is my code:

var RLWindow=Ti.UI.createWindow({backgroundColor:'#700'});

var LBBar=Titanium.UI.createView({height:60,left:0,right:0,top:105,backgroundImage:'Images/toolbar.jpeg'});

var ShowNotes=Ti.UI.createButton({color:'blue',font:{fontSize:20,fontWeight:"bold"},‌​right:10,title:'Today Notes',height:40,width:120});

LBBar.add(ShowNotes);

RLWindow.add(LBBar);
ShowNotes.addEventListener('click',function(e){

    var popover = Ti.UI.iPad.createPopover({ 
        width:300, 
        height:250,
        title:'Test Popover',
        arrowDirection:Ti.UI.iPad.POPOVER_ARROW_DIRECTION_UP
    }); 

    popover.show({
        view:button,
        animated:true
    });

     });

please help me with this situation..

Thank you

link|improve this question

Try to make a new build after cleaning the old one. and use popover.show({ view: ShowNotes, animated:true }); – Muhammad Zeeshan Sep 30 '11 at 5:26
feedback

2 Answers

up vote 2 down vote accepted

Clear out your build/iphone folder. I notice sometimes when you add a new platform UI object the compiler doesn't include the required Ti library in the xcode project.

link|improve this answer
1  
Thanks alot nuffGigs. thats the exact problem....... – Prateek Raj Oct 3 '11 at 4:30
feedback

This only works on the iPad, not on the iPhone. I am assuming you are using that? For iPhone you should use a regular window.

That being said, what is button? Stating the name, I guess that is your problem, because you need a view in that. If I do this (below) it seems to be working perfectly for me:

var popover = Ti.UI.iPad.createPopover({ 
    width:300, 
    height:250,
    title:'Test Popover',
    arrowDirection:Ti.UI.iPad.POPOVER_ARROW_DIRECTION_UP
}); 

var win = Ti.UI.createWindow({backgroundColor: '#FFF'});
win.open();

var v = Ti.UI.createView();
win.add(v);

popover.show({
    view: v,
    animated:true
});
link|improve this answer
i am using the ipad, it still shows the same error....... – Prateek Raj Sep 29 '11 at 7:59
how is 'button' created? – Topener Sep 29 '11 at 8:05
var ShowNotes=Ti.UI.createButton({color:'blue',font:{fontSize:20,fontWeight:"bold"},‌​right:10,title:'Today Notes',height:40,width:120}); – Prateek Raj Sep 29 '11 at 11:31
exactly. It needs a view, not a button. Within the view you can create the button again. See my post above, this works perfectly. – Topener Sep 29 '11 at 11:33
can you please go through the question once again. i have update my full code there, thank you. – Prateek Raj Sep 29 '11 at 13:37
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.