Community Questions & Answers

Open a Popover from another Popover

Is it possible to open a new Popover from another Popover without dismissing this? For instance, Popover 1 show current text properties (font, size, color). From this a new Popover would be open to select a new color. target iPad, Titanium SDK 3.0.2

How To Position a Popover with a ButtonBar

I'm trying to create a ButtonBar with 2 buttons that when clicked, will show an iPad Popover underneath the clicked button. Getting Popover positioned correctly seems to be the problem. I can get it to show up centered below the ButtonBar, but it's not...

Don't want to dismiss popover in Titanium

Reposted question from [Stack Overflow] [1] I'm just started working in Titanium. And now working on popover in titanium, using the following code. ~~~ var myPopover = Ti.UI.iPad.createPopover({ height: 150, width: 150...

Popover docs

From the documentation it shows this line in the example: ~~~ popover.show({view:button}); ~~~ but in the documentation for the show method it doesn't list any parameters. In the list of properties, there is no "view" property. What is...

iPad Popover Color

Hi there, I'm sure I must be doing something stupid but how can you change the popover border color? The only thing I can interact with is the backgroundColor property but the navBar stays blue. Thanks!

iPad Popover Styling

I'm trying to style a popover on an iPad. I've set backgroundColor, backgroundGradient, background...younameit... and no changes have been made at all. How am I supposed to color the top of the popover (where the title is shown)?

iPad PopoverView Help

Hiya I need to create a couple of iPad popoverViews for my app. Having struggled with the API info here i found a good example here: http://developer.appcelerator.com/question/23941/ipad-popoverview---any-examples My question is, is there cause for...

Popover Crash !

Hi, Iam getting an popover crash with this msg `[WARN] Unable to display popover; view is not attached to the current window` Iam having two tabs , where the popover window is being loaded in first tab & works fine ,when the user toggles back from...

position the popover to center of the window

how to position the popover to the center of the window irrespective of the position of the view. my view's position is at the bottom of the window. if view is clicked, the popover should open and hover to the center of the window. I tried adding center,...

Toolbar disabled on popover on Ti 2.02GA

I face a strange problem on iPad. I have a toolbar on a popover, the first time the popover is shown, no problem, the problem occurs at the second time, I see the toolbar and the buttons but I cannot click on them. It seems that the first time the popover...

Any way to remove the navbar from a popover?

I'm trying to create a popover for a searchfield in my app that will display autocomplete suggestions, basically identical to the ones in Safari (iPad version). I don't want to have any navbar at the top of the popover, I just want a thin border around the...

Adding to default copy/paste popover

Has anyone found a way to add more options to the default copy/paste popover? I am looking to add share and highlight options when a user has a piece of text selected. Instapaper is an example of an app that does this. Much thanks, Greg

SplitWindow popover

I'm having trouble getting the splitwindow master view popover to show up in portrait. I'm wondering if anyone knows how I can trigger the master view popover to show up. Although undocumented, I've found this function, but it just crashes my...

iPad Popover and Keyboard problem

~~~ var popover = Ti.UI.iPad.createPopover({ width: 400, height: 490, arrowDirection: Ti.UI.iPad.POPOVER_ARROW_DIRECTION_UP, title: 'Test' }); var view = Ti.UI.createView({ width: 400, height: 490 }); popover.add(view); view.add( Ti.UI.createTextField({...

How to drill down a tableview in a popover

What I wanna do is to open a tableView in a popover and all tableViewRow has child. Whenever a row is clicked, it slide to the left and open a the child View. Is it possible? In Window, I used to open the child like this: ~~~ var win2 =...

Detect when a popover is closed

Hello all, I'm trying to figure out how to detect when a popover is closed by losing focus so I can change a button's background. I've tried adding a listener to the main window for focus, tried adding a listener to the popover for blur and no luck. Any...

Prevent popover from "auto hiding"

Messing around with popovers in an iPad app, and it works great. Only trouble is that if I touch on any part of the screen outside of the popover, it automatically closes it. I need to prevent this behavior as I will have a Cancel button the user should...

Showing 1-50 of 102 1 2 3