Page 1 of 2

Popup

Posted: Tue Jan 13, 2015 7:51 pm
by Joe Bohen

Hi,
I have added a popup to my project and included some content which is not formatting correctly. I thought that this may be due to some custom css so I removed all the custom css from the app, the problem persisted.

In an attempt to show the nature of the problem I created another project and added the same popup. No problem works great. I have had a look at the source for both the projects and the only difference I can spot is the jquery version number.

the working version has a reference to:
<!-- <script type="text/javascript" src="files/resources/lib/jquery/jquery-2.1.1.js" --

Image

The non working version references.

<!-- <script type="text/javascript" src="files/resources/lib/jquery/jquery-1.9.1.js" --
Image

How do I get the list to show in the app with the reference to 1.9.1


Popup

Posted: Wed Jan 14, 2015 5:22 am
by Yurii Orishchuk

Hi Joe,

Please give us your app public link and describe steps to reproduce this problem in your app.

We will take a look..

Also please give us your second app public link... (to compare)..

Regards.


Popup

Posted: Wed Jan 14, 2015 12:16 pm
by Joe Bohen

Hi Yurii,

Both apps (TransApp v2 & popuptest') are available to support. The main app has the popup on the 'complete_pge' this is currently set as the start page for the application. I have placed a button on the page header 'Button' which will open the popup. The test app contains only the popup and a button to open the popup.

regards,
Joe


Popup

Posted: Wed Jan 14, 2015 10:05 pm
by Joe Bohen

Hi have you any information on this issue


Popup

Posted: Wed Jan 14, 2015 10:49 pm
by Joe Bohen

Hi, why is his topic set to answered! No response has been made to the question! Please reopen the question and address the question.


Popup

Posted: Thu Jan 15, 2015 1:25 am
by Yurii Orishchuk

Hi Joe,

I've tried this app.

You try to open popup with following JS code:

pre

$('#poptest')&#46;popup( "open", {});

/pre

But there is no such popup on your goal page.

See details: http://prntscr.com/5slvbw/direct

So you should add needed popup component on the page.

Regards.


Popup

Posted: Thu Jan 15, 2015 4:58 am
by Joe Bohen

Hi Yurri,

The popup is contained in an html panel 'html_92' which I have placed on the page to give consistency between the test app and the working app. This pops when the the 'Button' located in the header is clicked!

Joe Image


Popup

Posted: Thu Jan 15, 2015 10:56 am
by Joe Bohen

Hi Do you have any updates for me on this question?


Popup

Posted: Thu Jan 15, 2015 10:59 am
by Evgene Karachevtsev

Hello Joe,

Unfortunately not yet. We are working on it and will get back to you with the update.


Popup

Posted: Fri Jan 16, 2015 4:34 am
by Yurii Orishchuk

Hi Joe,

It seems you just have wrong HTML lay out for the popup.

I tried following one and it look correct:

pre

var popupLayOut = ' This is a completely basic popup, no options set&#46;

';

var popup = jQuery(popupLayOut);

jQuery("body")&#46;append(popup);

$("#popupBasic")&#46;popup();
$("#popupBasic")&#46;popup("open");

/pre

Regards.