Page 1 of 1

Popup clears background page

Posted: Sat Aug 10, 2013 8:48 pm
by Ravi Wayne

Hello,

When I am using popup pages, the background page disappears making it difficult for the user to understand the context of the popup.Is there a way to show popups while the parent page is still visible?

Thank you all for your excellent support!


Popup clears background page

Posted: Sat Aug 10, 2013 9:21 pm
by maxkatz

That's how jQuery Mobile works. You can can check their docs if there is an option not to hide the parent page.


Popup clears background page

Posted: Sun Aug 11, 2013 9:12 am
by Ole Henrik Oftedal

I havent tried this but maybe we can set it to none for transparent?

From: http://jquerymobile.com/demos/1.2.0/d...
..
..
theme string
default: null

Sets the color scheme (swatch) for the popup contents. Unless explicitly set to 'none', the theme for the popup will be assigned the first time the popup is shown by inheriting the page theme or, failing that, by the hard-coded value 'c'. If you set it to 'none', the popup will not have any theme at all, and will be transparent.

$( ".selector" ).popup({ theme: "a" });
This option is also exposed as a data attribute: data-theme="a"


Popup clears background page

Posted: Sun Aug 11, 2013 11:02 am
by Ole Henrik Oftedal

I have also found a forum post here:
https://getsatisfaction.com/apperyio/...

And here is also a page you can take a look at. (Also include a demo for download):

http://javascriptbites.com/post/2013/...

Please let us know your results from this.


Popup clears background page

Posted: Mon Aug 12, 2013 2:38 am
by Ravi Wayne

Thank you all for your suggestions. Most appreciated.