Page 7 of 8

jquery popup as confirmation

Posted: Thu May 15, 2014 12:58 pm
by Dave Troxel

Katya, someone... I am still lost here. I can get the popup to occur, but the 'delete' button I am attaching it to still fires even before anything can be selected. Can you help me figure out what I am doing wrong?


jquery popup as confirmation

Posted: Thu May 15, 2014 6:30 pm
by Evgene Karachevtsev

Hello Dave,

Please try this code. It should help you and it has better structure and it is easier for understanding: https://getsatisfaction.com/apperyio/...


jquery popup as confirmation

Posted: Fri May 23, 2014 9:13 am
by Jitendra Bhagat

I want to get a message dialog box when the count value is greater than 1000 on an input box of type = number. MessageDialog function is not working on ValueChange event that is when my value changes to a value more than 1000 ... it does not gives a Message Dialog pop-up in Appery. Urgently help needed.


jquery popup as confirmation

Posted: Fri May 23, 2014 12:23 pm
by Evgene Karachevtsev

Hello Jitendra,

You need to check any mistakes in console and check that event is fired (for example using alert):
http://devcenter.appery.io/documentat...


jquery popup as confirmation

Posted: Thu Jun 12, 2014 8:48 am
by Jitendra Bhagat

I want to Fadeout this MessageDialog alert box after 1 second . What do I need to do for that ?


jquery popup as confirmation

Posted: Fri Jun 13, 2014 1:24 am
by Yurii Orishchuk

Hi Jitendra.

If you need navigate to other page with some effect after some delay you can use following code:

pre

//Here you should set delay before action in miliseconds.
var delay = 1000;

var onDelay = function(){
Apperyio.navigateTo('Screen11', {
transition: 'fade'
});
};

window.setTimeout(onDelay, delay);

/pre

Also you can find other transitions here:

http://demos.jquerymobile.com/1.2.0/d...

Regards.


jquery popup as confirmation

Posted: Tue Jun 24, 2014 6:42 am
by Jitendra Bhagat

I am getting the Black Background rectangle on the screen when I Open the popup and when I say OK or when Pop up closes, that black rectangle disappears.

Please find the attached screenshot. Image

Waiting for a favorable reply.

Thanks in advance.


jquery popup as confirmation

Posted: Tue Jun 24, 2014 6:44 am
by Jitendra Bhagat

Further, I am facing the above issue on Android 4.3,Samsung Galaxy S-3 phone only not on iOS phones.


jquery popup as confirmation

Posted: Tue Jun 24, 2014 11:03 am
by Jitendra Bhagat

jquery popup as confirmation

Posted: Tue Jun 24, 2014 11:08 am
by Kateryna Grynko

Hi Jitendra,

Glad you solved it! Thank you for sharing this.