I created a dialog (Create Page-Dialog)
I want to open this dialog by a button click
how may i open this and pls send me help link
This should help:
https://getsatisfaction.com/apperyio/...
Hello,
Could you specify your question? The behavior of your application corresponds to your javascript code
Hi,
Is your dialog named ThankYouTick? What is your library version (see in App settings)? Did you change source files?
Hi,
You would need to add jQuery UI CSS/JS to your app additionally to get such a dialog: http://jqueryui.com/dialog/
$( "#tick" ).dialog( "close" );
is closing properly first time
second time when loop back from another page
$( "#tick" ).dialog( "close" );
is not executing and stopping here
let me know if you have any idea
$( "#tick" ).css("background", "transparent url('files/resources/image/tick.gif') no-repeat right top");
$( "#tick" ).dialog({
modal: true,
width: 260,
height: 290,
hide: "explode",
autoOpen: true
});
//2 sec timer
timer5 =2;
myVar5 = setInterval(function() {
timer5 = timer5 - 1;
Code: Select all
if (timer5 == 0) {
clearInterval(myVar5);
timer5 = 0;
$( "#tick" ).dialog( "close" );
//page code
clearInterval(myVar1);
reset_data();
Appery("mobilecontainer").hide();
Appery.navigateTo('Checkin', {});
}
}, 1000);