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
popover.show({ view: ShowNotes, animated:true });– Muhammad Zeeshan Sep 30 '11 at 5:26